kopia lustrzana https://github.com/wagtail/wagtail
Stop menu icon overlapping the breadcrumb on small viewport widths in page editor Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>pull/6529/head
rodzic
7f4c914e68
commit
65d0cdf55f
|
@ -5,6 +5,7 @@ Changelog
|
||||||
~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
* Added support for Python 3.9
|
* Added support for Python 3.9
|
||||||
|
* Fix: Stop menu icon overlapping the breadcrumb on small viewport widths in page editor (Karran Besen)
|
||||||
|
|
||||||
|
|
||||||
2.11.2 (17.11.2020)
|
2.11.2 (17.11.2020)
|
||||||
|
|
|
@ -20,7 +20,7 @@ Other features
|
||||||
Bug fixes
|
Bug fixes
|
||||||
~~~~~~~~~
|
~~~~~~~~~
|
||||||
|
|
||||||
* ...
|
* Stop menu icon overlapping the breadcrumb on small viewport widths in page editor (Karran Besen)
|
||||||
|
|
||||||
|
|
||||||
Upgrade considerations
|
Upgrade considerations
|
||||||
|
|
|
@ -7,12 +7,12 @@
|
||||||
|
|
||||||
.breadcrumb {
|
.breadcrumb {
|
||||||
margin: -1.2em 0 2em; // sass linter complains about $desktop-nice-padding here because of unit mismatch
|
margin: -1.2em 0 2em; // sass linter complains about $desktop-nice-padding here because of unit mismatch
|
||||||
margin-left: -$desktop-nice-padding;
|
|
||||||
margin-right: -$desktop-nice-padding;
|
|
||||||
padding-left: calc(#{$desktop-nice-padding} - 2em);
|
padding-left: calc(#{$desktop-nice-padding} - 2em);
|
||||||
|
|
||||||
@include media-breakpoint-up(sm) {
|
@include media-breakpoint-up(sm) {
|
||||||
margin-top: -1.8em;
|
margin-top: -1.8em;
|
||||||
|
margin-left: -$desktop-nice-padding;
|
||||||
|
margin-right: -$desktop-nice-padding;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Ładowanie…
Reference in New Issue