Skip to content
Snippets Groups Projects
Unverified Commit 0b8a9fca authored by Morris Jobke's avatar Morris Jobke Committed by GitHub
Browse files

Merge pull request #7572 from nextcloud/fix-box-shadow

Fix box shadow of header elements
parents dc8809e7 f8548310
No related branches found
No related tags found
No related merge requests found
...@@ -16,3 +16,10 @@ select { ...@@ -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 @@ ...@@ -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;
box-sizing: border-box; box-sizing: border-box;
z-index: 2000; z-index: 2000;
...@@ -213,7 +213,7 @@ nav { ...@@ -213,7 +213,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%;
...@@ -411,7 +411,6 @@ nav { ...@@ -411,7 +411,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;
...@@ -486,7 +485,7 @@ nav { ...@@ -486,7 +485,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;
...@@ -499,7 +498,7 @@ nav { ...@@ -499,7 +498,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 {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment