Commit 3cb275b 1 parent 3900de7 commit 3cb275b Copy full SHA for 3cb275b
File tree 3 files changed +9
-21
lines changed
3 files changed +9
-21
lines changed Original file line number Diff line number Diff line change 12
12
@include break-zoomed-in {
13
13
flex-wrap : nowrap ;
14
14
}
15
-
16
- // Some browsers, most notably IE11, honor an older version of the flexbox spec
17
- // which takes absolutely positioned items into account when calculating `space-between`.
18
- // https://www.w3.org/TR/2012/WD-css3-flexbox-20120612/#abspos-flex-items
19
- //
20
- // This difference is causing our header layout to break when focused in IE11.
21
- // Our focused region styles use an absolutely positioned :after pseudo element to draw an outline,
22
- // and IE11 is adding space between it and our last real child, shifting righthand UI elements
23
- // to the left. For a workaround, we change the flex order to move the undesired spacing to the middle
24
- // where it is no longer noticeable.
25
- > .edit-post-header__settings {
26
- order : 1 ;
27
-
28
- // Restore default order for all other browsers
29
- @supports (position : sticky ) {
30
- order : initial ;
31
- }
32
- }
33
15
}
34
16
35
17
.edit-post-header__toolbar {
153
135
padding-right : $grid-unit-05 ;
154
136
155
137
@include break-small () {
156
- padding-right : $grid-unit-20 - ( $grid-unit-15 * 0.5 ) ;
138
+ padding-right : $grid-unit-10 ;
157
139
}
158
140
159
141
gap : $grid-unit-10 ;
Original file line number Diff line number Diff line change @@ -86,7 +86,13 @@ $header-toolbar-min-width: 335px;
86
86
.edit-site-header-edit-mode__actions {
87
87
display : inline-flex ;
88
88
align-items : center ;
89
- padding-right : $grid-unit-10 ;
89
+ flex-wrap : nowrap ;
90
+ padding-right : $grid-unit-05 ;
91
+
92
+ @include break-small () {
93
+ padding-right : $grid-unit-10 ;
94
+ }
95
+
90
96
gap : $grid-unit-10 ;
91
97
}
92
98
Original file line number Diff line number Diff line change 17
17
}
18
18
19
19
.interface-more-menu-dropdown__content .components-popover__content {
20
- min-width : 280 px ;
20
+ min-width : 300 px ;
21
21
22
22
// Let the menu scale to fit items.
23
23
@include break-mobile () {
You can’t perform that action at this time.
0 commit comments