Skip to content
Snippets Groups Projects
Commit 31a81f95 authored by Jan-Hendrik Willms's avatar Jan-Hendrik Willms
Browse files

adjust blur effects to new conditions, fixes #2069

Closes #2069

Merge request studip/studip!1355
parent 8b8f72dd
No related branches found
No related tags found
1 merge request!4Draft: Icon creation
......@@ -313,21 +313,28 @@ html:not(.size-large) {
z-index: 0;
}
#current-page-structure {
#navigation-level-1,
#current-page-structure,
#sidebar,
#content-wrapper,
#main-footer,
#scroll-to-top
{
position: relative;
filter: blur(1px);
}
&::before {
content: ' ';
display: block;
position: absolute;
top: -1px;
right: -1px;
bottom: -1px;
left: -1px;
background: mix($base-color, rgba(255,0,0,0), 50%);
z-index: 1;
}
body::before {
content: ' ';
display: block;
position: fixed;
top: $bar-bottom-container-height;
right: -1px;
bottom: -1px;
left: -1px;
background: mix($base-color, rgba(255,0,0,0), 50%);
z-index: 5;
pointer-events: none;
}
}
}
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