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 { ...@@ -72,7 +72,7 @@ div.messagebox_details {
// Define modal messagebox // Define modal messagebox
.modaloverlay { .modaloverlay {
background: fadeout($base-color, 50%); background: fade-out($base-color, 0.5);
position: fixed; position: fixed;
top: 0; top: 0;
left: 0; left: 0;
......
...@@ -504,7 +504,7 @@ table.default { ...@@ -504,7 +504,7 @@ table.default {
> thead { > thead {
> tr > th { > tr > th {
background-color: var(--content-color-20); 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); border-top: 1px solid var(--brand-color-darker);
font-size: 1.0em; font-size: 1.0em;
} }
...@@ -515,7 +515,7 @@ table.default { ...@@ -515,7 +515,7 @@ table.default {
> th { > th {
background-color: var(--content-color-20); background-color: var(--content-color-20);
border-top: 1px solid var(--brand-color-darker); 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; text-align: left;
} }
...@@ -580,7 +580,7 @@ table.default { ...@@ -580,7 +580,7 @@ table.default {
// Hover effect // Hover effect
&:not(.nohover) > tbody:not(.nohover) > tr:not(.nohover):hover > td:not(.nohover) { &: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) { &:not(.nohover) > tbody:not(.nohover) > tr.selected:not(.nohover):hover > td:not(.nohover) {
...@@ -742,7 +742,7 @@ table.withdetails { ...@@ -742,7 +742,7 @@ table.withdetails {
} }
> tbody > tr.open > td { > 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 { > tbody > tr.open > td:first-child {
......
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