Add --theme-container-box-shadow places missed (#1420)

* Add --theme-container-box-shadow to footer

Add the --theme-container-box-shadow variable to the footer box shadow

* Add --theme-container-box-shadow to dashboard-analytics-header-wrapper

Add the --theme-container-box-shadow variable to the dashboard-analytics-header-wrapper

* Add --theme-container-box-shadow to query

Add the --theme-container-box-shadow variables to the no results query page

* Add --theme-container-box-shadow to widgets

Add the --theme-container-box-shadow variables to widgets
This commit is contained in:
Andrew Bone 2019-01-06 20:15:38 +00:00 committed by Ben Halpern
parent 9af401ad09
commit 8cccc03b9a
3 changed files with 5 additions and 1 deletions

View file

@ -28,6 +28,7 @@
font-size:1.2em;
background: white;
box-shadow: $bold-shadow;
box-shadow: var(--theme-container-box-shadow, $bold-shadow);
border-radius:3px;
border:1px solid $outline-color;
border: var(--theme-container-border, 1px solid $outline-color);
@ -958,6 +959,7 @@
border-radius:3px;
border: 1px solid $outline-color;
box-shadow: $bold-shadow;
box-shadow: var(--theme-container-box-shadow, $bold-shadow);
&.fixed-widget {
position: fixed;
width: 254px;

View file

@ -80,6 +80,7 @@
margin-bottom: 28px;
background: $dark-gray;
box-shadow: $bold-shadow;
box-shadow: var(--theme-container-box-shadow, $bold-shadow);
padding: 15px 0px;
}
.dashboard-analytics-header{

View file

@ -27,7 +27,8 @@ footer{
max-width: 820px;
background: $tan;
border: 1px solid darken($light-medium-gray, 2%);
box-shadow: 3px 4px 0px darken($light-medium-gray, 2%);
box-shadow: $bold-shadow;
box-shadow: var(--theme-container-box-shadow, $bold-shadow);
padding:50px 30px;
line-height: 3em;
margin:auto;