| 1 |
#adminmenu { |
| 2 |
.toplevel_page_snippets div.wp-menu-image::before { |
| 3 |
content: ''; |
| 4 |
mask-image: url('../assets/menu-icon.svg'); |
| 5 |
mask-repeat: no-repeat; |
| 6 |
mask-position: center; |
| 7 |
background-color: currentcolor; |
| 8 |
} |
| 9 |
|
| 10 |
.code-snippets-upgrade-button { |
| 11 |
color: #fff; |
| 12 |
background-color: #d46f4d; |
| 13 |
border: none; |
| 14 |
text-align: center; |
| 15 |
font-weight: bold; |
| 16 |
transition: background-color .1s linear; |
| 17 |
white-space: break-spaces; |
| 18 |
line-height: inherit; |
| 19 |
display: flex; |
| 20 |
justify-content: center; |
| 21 |
align-items: center; |
| 22 |
|
| 23 |
&:hover { |
| 24 |
background-color: #08c5d1; |
| 25 |
} |
| 26 |
|
| 27 |
.dashicons { |
| 28 |
vertical-align: text-bottom; |
| 29 |
} |
| 30 |
} |
| 31 |
|
| 32 |
.wp-submenu a[href='admin.php?page=code_snippets_upgrade']='admin.php?page=code_snippets_upgrade']:hover { |
| 33 |
box-shadow: none; |
| 34 |
} |
| 35 |
} |
| 36 |
|