PluginProbe
Code Snippets / 3.10.1
Code Snippets v3.10.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.10.1, at css/menu.scss

58 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1
2 #adminmenu {
3 .toplevel_page_snippets div.wp-menu-image::before {
4 content: '';
5 mask-image: url('../assets/menu-icon.svg');
6 mask-repeat: no-repeat;
7 mask-position: center;
8 background-color: currentcolor;
9 }
10
11 .code-snippets-upgrade-button {
12 color: #fff;
13 background-color: #d46f4d;
14 border: none;
15
16 // WP 7.0 restyles `.button`/`.button-primary` with wider padding, a 2px radius and a
17 // 40px min-height; pin these (independent of the plugin control tokens, which are
18 // sized for page content rather than the admin menu) so the pill keeps its compact
19 // dimensions and stays aligned with the surrounding submenu items across WP versions.
20 border-radius: 3px;
21 padding-block: 0;
22 padding-inline: 10px;
23 min-block-size: 30px;
24 block-size: auto;
25 text-align: center;
26 font-weight: bold;
27 transition: background-color .1s linear;
28 white-space: break-spaces;
29 line-height: inherit;
30 display: flex;
31 justify-content: center;
32 align-items: center;
33
34 @media (prefers-reduced-motion: reduce) {
35 transition-duration: 0.01s;
36 }
37
38 &:hover {
39 background-color: #0ca0a9;
40 }
41
42 .dashicons {
43 vertical-align: text-bottom;
44 color: inherit;
45 font-size: 16px;
46 padding-block-start: 2px;
47
48 // WP 7.0's taller button line-height (≈38px) leaks onto the icon and pushes it out
49 // of alignment; reset it so the glyph stays centred within the flex pill.
50 line-height: 1;
51 }
52 }
53
54 .wp-submenu a[href='admin.php?page=code_snippets_upgrade']='admin.php?page=code_snippets_upgrade']:hover {
55 box-shadow: none;
56 }
57 }
58