File tree Expand file tree Collapse file tree 3 files changed +33
-4
lines changed Expand file tree Collapse file tree 3 files changed +33
-4
lines changed Original file line number Diff line number Diff line change 329
329
}
330
330
.submitted {
331
331
font-size : 0.9rem ;
332
+ margin : .9rem 0 ;
332
333
}
333
334
/**
334
335
* Push footer down to bottom of page.
373
374
margin : 0 0 15px ;
374
375
border-radius : 4px ;
375
376
}
377
+ .comment p {
378
+ margin : .7rem 0 ;
379
+ }
376
380
.comments .indented {
377
381
position : relative;
378
382
}
@@ -381,16 +385,40 @@ h6 {
381
385
display : block;
382
386
width : 15px ;
383
387
height : 15px ;
384
- transform : rotate (45deg );
385
388
-webkit-transform : rotate (45deg );
389
+ transform : rotate (45deg ); /* LTR */
386
390
position : absolute;
387
391
top : 20px ;
388
- left : -28px ;
392
+ left : -28px ; /* LTR */
393
+ }
394
+ [dir = "rtl" ] .comments .indented .comment ::before {
395
+ -webkit-transform : rotate (225deg );
396
+ transform : rotate (225deg );
397
+ left : auto;
398
+ right : -28px ;
389
399
}
390
- .comment h3 {
400
+ .comment . comment-title {
391
401
margin : 0 ;
392
402
font-size : 1.2rem ;
393
403
}
404
+ .comment .comment-title-hidden .comment-title .permalink {
405
+ display : block;
406
+ width : 1em ;
407
+ height : 1em ;
408
+ float : left; /* LTR */
409
+ margin : .7rem 8px 0 0 ;
410
+ text-indent : -333px ;
411
+ overflow : hidden;
412
+ background-color : currentColor;
413
+ -webkit-mask-image : url ("../images/permalink.svg" );
414
+ mask-image : url ("../images/permalink.svg" );
415
+ -webkit-mask-size : cover;
416
+ mask-size : cover;
417
+ }
418
+ [dir = "rtl" ] .comment .comment-title-hidden .comment-title .permalink {
419
+ float : right;
420
+ margin : .7rem 0 0 8px ;
421
+ }
394
422
.comment ul .links {
395
423
display : block;
396
424
margin-bottom : 0 ;
Original file line number Diff line number Diff line change 62
62
<?php if ($ new ): ?>
63
63
<mark class="new"><?php print $ new ; ?> </mark>
64
64
<?php endif ; ?>
65
- <h3><?php print $ title ; ?> </h3>
65
+ <h3 class="comment-title" ><?php print $ title ; ?> </h3>
66
66
<?php print render ($ title_suffix ); ?>
67
67
68
68
<footer>
You can’t perform that action at this time.
0 commit comments