Fix box shadow of header elements
* unify shadow blur from 3px to 10px * remove opacity of background of app labels * for IE: use box-shadow as fallback (because the filter: drop-shadow is not supported) Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
parent
e550a3ddd8
commit
f854831045
|
@ -16,3 +16,10 @@ select {
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.ie #header .menu,
|
||||||
|
.ie .header-left #navigation,
|
||||||
|
.ie .ui-datepicker,
|
||||||
|
.ie .ui-timepicker.ui-widget,
|
||||||
|
.ie #appmenu li span {
|
||||||
|
box-shadow: 0 1px 10px $color-box-shadow;
|
||||||
|
}
|
||||||
|
|
|
@ -76,7 +76,7 @@
|
||||||
.menu {
|
.menu {
|
||||||
top: 45px;
|
top: 45px;
|
||||||
background-color: $color-main-background;
|
background-color: $color-main-background;
|
||||||
filter: drop-shadow(0 1px 3px $color-box-shadow);
|
filter: drop-shadow(0 1px 10px $color-box-shadow);
|
||||||
border-radius: 0 0 3px 3px;
|
border-radius: 0 0 3px 3px;
|
||||||
display: none;
|
display: none;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
@ -210,7 +210,7 @@ nav {
|
||||||
left: -100%;
|
left: -100%;
|
||||||
width: 160px;
|
width: 160px;
|
||||||
background-color: $color-main-background;
|
background-color: $color-main-background;
|
||||||
filter: drop-shadow(0 1px 3px $color-box-shadow);
|
filter: drop-shadow(0 1px 10px $color-box-shadow);
|
||||||
&:after {
|
&:after {
|
||||||
/* position of dropdown arrow */
|
/* position of dropdown arrow */
|
||||||
left: 47%;
|
left: 47%;
|
||||||
|
@ -408,7 +408,6 @@ nav {
|
||||||
#expanddiv {
|
#expanddiv {
|
||||||
right: 13px;
|
right: 13px;
|
||||||
background: $color-main-background;
|
background: $color-main-background;
|
||||||
box-shadow: 0 1px 10px $color-box-shadow;
|
|
||||||
&:after {
|
&:after {
|
||||||
/* position of dropdown arrow */
|
/* position of dropdown arrow */
|
||||||
right: 13px;
|
right: 13px;
|
||||||
|
@ -483,7 +482,7 @@ nav {
|
||||||
display: none;
|
display: none;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
overflow: visible;
|
overflow: visible;
|
||||||
background-color: rgba($color-main-background, .97);
|
background-color: $color-main-background;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: $border-radius;
|
border-radius: $border-radius;
|
||||||
|
@ -496,7 +495,7 @@ nav {
|
||||||
top: 45px;
|
top: 45px;
|
||||||
transform: translateX(-50%);
|
transform: translateX(-50%);
|
||||||
padding: 4px 10px;
|
padding: 4px 10px;
|
||||||
box-shadow: 0 1px 10px $color-box-shadow;
|
filter: drop-shadow(0 1px 10px $color-box-shadow);
|
||||||
}
|
}
|
||||||
|
|
||||||
li:hover span {
|
li:hover span {
|
||||||
|
|
Loading…
Reference in New Issue