icon.scss in WP Ultimate Post Grid 4.0.1, at assets/css/admin/shared/icon.scss
| 1 | .wpupg-admin-icon { |
| 2 | opacity: 0.5; |
| 3 | margin-top: 2px; |
| 4 | |
| 5 | &:hover { |
| 6 | opacity: 1; |
| 7 | cursor: pointer; |
| 8 | } |
| 9 | |
| 10 | &.wpupg-admin-icon-required { |
| 11 | cursor: help !important; |
| 12 | } |
| 13 | } |
| 14 | |
| 15 | .wpupg-admin-icon-help { |
| 16 | display: inline-block; |
| 17 | margin-top: 0; |
| 18 | margin-left: 5px; |
| 19 | |
| 20 | border: 1px solid #444; |
| 21 | border-radius: 100%; |
| 22 | opacity: 1; |
| 23 | |
| 24 | width: 16px; |
| 25 | height: 16px; |
| 26 | text-align: center; |
| 27 | font-size: 12px; |
| 28 | |
| 29 | svg { |
| 30 | width: 10px; |
| 31 | height: 9px; |
| 32 | margin-bottom: 2px; |
| 33 | } |
| 34 | |
| 35 | &:hover { |
| 36 | background-color: #444; |
| 37 | |
| 38 | svg { |
| 39 | g, |
| 40 | path { |
| 41 | fill: white; |
| 42 | } |
| 43 | } |
| 44 | } |
| 45 | } |