Skip to content

Commit

Permalink
fix contrast in overview, bring schedule deisgn back in line with event
Browse files Browse the repository at this point in the history
  • Loading branch information
thilobillerbeck committed Oct 3, 2024
1 parent 04cbed2 commit a15d083
Showing 1 changed file with 23 additions and 2 deletions.
25 changes: 23 additions & 2 deletions configs/conferences/mrmcd/main.less
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ body > div.container {
}

body .schedule .block {
background-color: @shadowDark;
background-color: @shadowDarkContrast;
border-radius: 10px;
margin-bottom: 1em;
font-size: 1rem;
Expand All @@ -204,8 +204,9 @@ body .schedule .block {
&.pause, &.daychange {
background-color: @shadowDarkContrast;
}

&.optout {
background-color: @shadowDark;
background-color: @shadowDarkContrast;
background-image: linear-gradient(45deg,
rgba(255, 0, 0, 0.3) 25%, transparent 25%, transparent 50%,
rgba(255, 0, 0, 0.3) 50%,
Expand Down Expand Up @@ -258,6 +259,15 @@ body .schedule .block {
}
}

body .schedule .room.highlight .block {
&.daychange {
background-color: @shadowDarkContrast;
}
&.pause {
background-color: @shadowDarkContrast;
}
}

body .schedule .now .overlay {
background-color: fade(@shadowDarkContrast, 50%);
border-right: 2px solid white;
Expand Down Expand Up @@ -320,6 +330,9 @@ body.room .tab-content {
&:hover {
transition: all 0.3s;
background-color: @meerSchattenDunkel;
.program-schedule {
color: white;
}
.panel-heading {
color: white;
}
Expand Down Expand Up @@ -374,4 +387,12 @@ body.room .functions-wrap #switcher .btn-group {

body.room .player-wrap {
margin-bottom: 5rem;
}

.program-schedule {
color: @shadowDarkContrast;
}

body .schedule .room.highlight .block {
background-color: @shadowDark;
}

0 comments on commit a15d083

Please sign in to comment.