PluginProbe
Code Snippets / 3.9.1
Code Snippets v3.9.1
3.10.2 3.10.1 3.10.0 3.10.0-beta.2 3.10.0-beta.1 4.0.0-beta.1 3.9.6 trunk 2.10.0 2.10.1 2.12.0 2.12.1 2.13.0 2.13.1 2.13.2 2.13.3 2.14.0 2.14.1 2.14.2 2.14.3 2.14.4 2.14.5 2.14.6 3.0.0 3.0.1 All 64 releases
code-snippets / css / menu.scss

menu.scss in Code Snippets 3.9.1, at css/menu.scss

36 lines 711 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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