admin-style.css
46 lines
| 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 | } |
| 10 | |
| 11 | .fixed .column-comment_likes .comment-like-count { |
| 12 | box-sizing: border-box; |
| 13 | display: inline-block; |
| 14 | padding: 0 8px; |
| 15 | height: 2em; |
| 16 | margin-top: 5px; |
| 17 | -webkit-border-radius: 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: normal 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 | .fixed .column-comment_likes { |
| 43 | display: none; |
| 44 | } |
| 45 | } |
| 46 |