bootstrap.php
5 years ago
class-posts-list-page-notification.php
4 years ago
wp-posts-list.css
5 years ago
wp-posts-list.css
34 lines
| 1 | .posts-page .info { |
| 2 | position: relative; |
| 3 | display: inline-block; |
| 4 | margin-left:8px; |
| 5 | } |
| 6 | |
| 7 | .posts-page .info .message { |
| 8 | visibility: hidden; |
| 9 | width:220px; |
| 10 | font-size: .875rem; |
| 11 | background-color: #fff; |
| 12 | color: #646970; |
| 13 | text-align: left; |
| 14 | border:1px solid #c3c4c7; |
| 15 | position: absolute; |
| 16 | z-index: 1; |
| 17 | margin-left:5px; |
| 18 | padding: 16px; |
| 19 | border-radius: 2px; |
| 20 | box-shadow: 0 2px 5px rgba(0,0,0,.1),0 0 56px rgba(0,0,0,.075) |
| 21 | } |
| 22 | |
| 23 | .posts-page .info:hover .message { |
| 24 | visibility: visible; |
| 25 | } |
| 26 | |
| 27 | @media screen and (max-width: 782px) { |
| 28 | .posts-page .info .icon { |
| 29 | font-size: 28px; |
| 30 | width:28px; |
| 31 | height:28px; |
| 32 | } |
| 33 | } |
| 34 |