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

fix usage of fade-out in scss (was migrated incorrectly from less), fixes #4332

Closes #4332

Merge request studip/studip!3133
parent ce6cff5a
No related branches found
No related tags found
No related merge requests found
......@@ -72,7 +72,7 @@ div.messagebox_details {
// Define modal messagebox
.modaloverlay {
background: fadeout($base-color, 50%);
background: fade-out($base-color, 0.5);
position: fixed;
top: 0;
left: 0;
......
......@@ -504,7 +504,7 @@ table.default {
> thead {
> tr > th {
background-color: var(--content-color-20);
border-bottom: 1px solid fadeout($brand-color-lighter, 80%);
border-bottom: 1px solid fade-out($brand-color-lighter, 0.8);
border-top: 1px solid var(--brand-color-darker);
font-size: 1.0em;
}
......@@ -515,7 +515,7 @@ table.default {
> th {
background-color: var(--content-color-20);
border-top: 1px solid var(--brand-color-darker);
border-bottom: 1px solid fadeout($brand-color-lighter, 80%);
border-bottom: 1px solid fade-out($brand-color-lighter, 0.8);
text-align: left;
}
......@@ -580,7 +580,7 @@ table.default {
// Hover effect
&:not(.nohover) > tbody:not(.nohover) > tr:not(.nohover):hover > td:not(.nohover) {
background-color: fadeout($light-gray-color, 80%);
background-color: fade-out($light-gray-color, 0.8);
}
&:not(.nohover) > tbody:not(.nohover) > tr.selected:not(.nohover):hover > td:not(.nohover) {
......@@ -742,7 +742,7 @@ table.withdetails {
}
> tbody > tr.open > td {
background-color: fadeout($light-gray-color, 80%);
background-color: fade-out($light-gray-color, 0.8);
}
> tbody > tr.open > td:first-child {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment