diff --git a/CHANGELOG.txt b/CHANGELOG.txt index b0194f5f00..51cdc3e71d 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -34,6 +34,7 @@ Changelog * Fix: All admin forms that could potentially include file upload fields now specify `multipart/form-data` where appropriate (Tim Heap) * Fix: REM units in Wagtailuserbar caused incorrect spacing (Vincent Audebert) * Fix: Explorer menu no longer scrolls with page content (Vincent Audebert) + * Fix: Border added around explorer menu to stop it blending in with StreamField block listing (Alex Gleason) 1.4.4 (xx.xx.2016) diff --git a/docs/releases/1.5.rst b/docs/releases/1.5.rst index 12aef75f53..aba1039658 100644 --- a/docs/releases/1.5.rst +++ b/docs/releases/1.5.rst @@ -63,6 +63,7 @@ Bug fixes * All admin forms that could potentially include file upload fields now specify ``multipart/form-data`` where appropriate (Tim Heap) * REM units in Wagtailuserbar caused incorrect spacing (Vincent Audebert) * Explorer menu no longer scrolls with page content (Vincent Audebert) + * Border added around explorer menu to stop it blending in with StreamField block listing (Alex Gleason) Upgrade considerations diff --git a/wagtail/wagtailadmin/static_src/wagtailadmin/scss/components/_main-nav.scss b/wagtail/wagtailadmin/static_src/wagtailadmin/scss/components/_main-nav.scss index 13bf4ea90c..d0b13f6987 100644 --- a/wagtail/wagtailadmin/static_src/wagtailadmin/scss/components/_main-nav.scss +++ b/wagtail/wagtailadmin/static_src/wagtailadmin/scss/components/_main-nav.scss @@ -416,6 +416,17 @@ body.explorer-open { display: none; } + .explorer:after { + content: ''; + width: calc(100% - 2px); + height: 100%; + position: absolute; + top: 0; + right: 0; + z-index: -1; + box-shadow: 0px 0px 2px rgba(255, 255, 255, 0.9); + } + .nav-main { display: block; }