Skip to content
Snippets Groups Projects
Commit f9887c3c authored by Jan-Hendrik Willms's avatar Jan-Hendrik Willms Committed by David Siegfried
Browse files

fix wrong usage of mix(), fixes #1868

Closes #1868

Merge request studip/studip!1222
parent f9248db3
No related branches found
No related tags found
No related merge requests found
$bg-big-image-handler: mix($black, $white, 30%);
$bg-big-image-handler: fade-out($black, 0.3);
.oversized-image {
cursor: zoom-in;
......@@ -31,7 +31,7 @@ $bg-big-image-handler: mix($black, $white, 30%);
background-repeat: no-repeat;
background-size: contain;
border: 1px solid $white;
box-shadow: 0 0 20px mix($black, $white, 50%);
box-shadow: 0 0 20px fade-out($white, 0.5);
display: block;
max-width: 98%;
max-height: 98%;
......
.ui-widget-overlay {
background: transparentize($base-gray, .2);
background: fade-out($base-gray, 0.2);
opacity: 1;
position: fixed;
}
......
......@@ -16,7 +16,7 @@
bottom: 0;
&-local {
background-color: mix($light-gray-color, $white, 50%);
background-color: fade-out($light-gray-color, 0.5);
position: absolute;
}
......
......@@ -31,7 +31,7 @@
}
li.empty-placeholder {
color: mix($text-color, $white, 30%);
color: fade-out($text-color, 0.3);
&:not(:only-child) {
display: none;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment