| 1 |
.fixed .column-comment_likes { |
| 2 |
width: 5.5em; |
| 3 |
padding: 8px 0; |
| 4 |
text-align: center; |
| 5 |
} |
| 6 |
|
| 7 |
.fixed .column-stats { |
| 8 |
width: 5em; |
| 9 |
white-space: nowrap; |
| 10 |
} |
| 11 |
|
| 12 |
.fixed .column-comment_likes .comment-like-count { |
| 13 |
box-sizing: border-box; |
| 14 |
display: inline-block; |
| 15 |
padding: 0 8px; |
| 16 |
height: 2em; |
| 17 |
margin-top: 5px; |
| 18 |
border-radius: 5px; |
| 19 |
background-color: #787c82; |
| 20 |
color: #fff; |
| 21 |
font-size: 11px; |
| 22 |
line-height: 21px; |
| 23 |
} |
| 24 |
|
| 25 |
.fixed .column-comment_likes .comment-like-count::after { |
| 26 |
border: none; |
| 27 |
} |
| 28 |
|
| 29 |
.fixed .column-comment_likes .comment-like-count:hover { |
| 30 |
background-color: #2271b1; |
| 31 |
} |
| 32 |
|
| 33 |
.fixed .column-comment_likes .vers::before { |
| 34 |
font: 400 20px/1 dashicons; |
| 35 |
content: "\f155"; |
| 36 |
speak: none; |
| 37 |
-webkit-font-smoothing: antialiased; |
| 38 |
-moz-osx-font-smoothing: grayscale; |
| 39 |
} |
| 40 |
|
| 41 |
@media screen and (max-width: 782px) { |
| 42 |
|
| 43 |
.fixed .column-comment_likes { |
| 44 |
display: none; |
| 45 |
} |
| 46 |
} |
| 47 |
|