-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Expand file tree
/
Copy pathstyle.scss
More file actions
64 lines (51 loc) · 1.31 KB
/
style.scss
File metadata and controls
64 lines (51 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// In order to use mix-blend-mode, this element needs to have an explicitly set background-color
// We scope it to .wp-toolbar to be wp-admin only, to prevent bleed into other implementations
html.wp-toolbar {
background: $white;
}
body.gutenberg_page_gutenberg-widgets {
background: $white;
#wpcontent {
padding-left: 0;
}
#wpbody-content {
padding-bottom: 0;
}
/* We hide legacy notices in Gutenberg, because they were not designed in a way that scaled well.
Plugins can use Gutenberg notices if they need to pass on information to the user when they are editing. */
#wpbody-content > div:not(.blocks-widgets-container):not(#screen-meta) {
display: none;
}
#wpfooter {
display: none;
}
.a11y-speak-region {
left: -1px;
top: -1px;
}
ul#adminmenu a.wp-has-current-submenu::after,
ul#adminmenu > li.current > a.current::after {
border-right-color: $white;
}
.media-frame select.attachment-filters:last-of-type {
width: auto;
max-width: 100%;
}
}
.blocks-widgets-container,
// The modals are shown outside the .blocks-widgets-container wrapper, they need these styles
.components-modal__frame {
box-sizing: border-box;
*,
*::before,
*::after {
box-sizing: inherit;
}
select {
font-size: $default-font-size;
color: $dark-gray-500;
}
}
.blocks-widgets-container {
padding: 0 10px;
}