PluginProbe
Code Snippets / 4.0.0-beta.2
Code Snippets v4.0.0-beta.2
4.0.0-beta.2 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 All 65 releases
code-snippets / css / menu.scss

menu.scss in Code Snippets 4.0.0-beta.2, at css/menu.scss

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