Skip to content
Snippets Groups Projects
Commit c9225e55 authored by Ron Lucke's avatar Ron Lucke
Browse files

Rahmen auf der Verwaltungsseite haben falsche Farbe

Closes #4895

Merge request studip/studip!3666
parent 68760bf3
No related branches found
No related tags found
No related merge requests found
......@@ -265,6 +265,10 @@ $color--tile-border: $color--gray-5;
$color--tile-background: $color--gray-7;
$color--tile-background-focus: $color--gray-6;
$color--tile-background-hover: $color--gray-6;
$color--tile-marker-inactive: $color--gray-4;
$color--tile-marker-active: $color--green-1;
$color--tile-marker-attention: $color--yellow-1;
$color--tile-title-background: $color--gray-6;
$color--content-box-border: $color--gray-6;
$color--content-box-header: $color--gray-6;
......
......@@ -14,7 +14,7 @@ $grid-element-width: 270px;
}
.studip-grid-element {
border: 1px solid var(--light-gray-color);
border: 1px solid var(--color--tile-border);
}
// Responsive displays
......
......@@ -246,6 +246,10 @@ $grid-gap: 0;
--color--tile-background: #{$color--tile-background};
--color--tile-background-focus: #{$color--tile-background-focus};
--color--tile-background-hover: #{$color--tile-background-hover};
--color--tile-marker-inactive: #{$color--tile-marker-inactive};
--color--tile-marker-active: #{$color--tile-marker-active};
--color--tile-marker-attention: #{$color--tile-marker-attention};
--color--tile-title-background: #{$color--tile-title-background};
--color--content-box-border: #{$color--content-box-border};
--color--content-box-header: #{$color--content-box-header};
......
......@@ -192,18 +192,18 @@ export default {
display: flex;
flex-direction: row;
background-color: var(--white);
border-left: 1px solid var(--dark-gray-color-60);
border-left: 1px solid var(--color--tile-marker-inactive);
&.visibility-visible {
border-left-color: var(--green);
border-left-color: var(--color--tile-marker-active);
> div {
border-left-color: var(--green);
border-left-color: var(--color--tile-marker-active);
}
}
&.visibility-invisible {
border-left-color: var(--yellow);
> div {
border-left-color: var(--yellow);
border-left-color: var(--color--tile-marker-attention);
}
}
......@@ -243,7 +243,7 @@ export default {
flex-direction: column;
justify-content: space-between;
transition: all var(--transition-duration) ease;
border-left: 10px solid var(--dark-gray-color-60);
border-left: 10px solid var(--color--tile-marker-inactive);
min-height: 150px;
width: 100%;
......@@ -262,7 +262,7 @@ export default {
}
}
> .down_part {
background-color: var(--content-color-20);
background-color: var(--color--tile-title-background);
display: flex;
justify-content: space-between;
align-items: center;
......
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