From deb3a605184be8fbfac3f01b35cf09ed6294624d Mon Sep 17 00:00:00 2001 From: Jan-Hendrik Willms <tleilax+github@gmail.com> Date: Wed, 3 Apr 2024 12:07:10 +0200 Subject: [PATCH] fix broken cherry-pick ea54af6bc8d934429e78da1af85b3378793a46e --- .../assets/stylesheets/less/schedule.less | 36 +++++++++---------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/resources/assets/stylesheets/less/schedule.less b/resources/assets/stylesheets/less/schedule.less index 096ffb6a45f..5d2e69dc340 100644 --- a/resources/assets/stylesheets/less/schedule.less +++ b/resources/assets/stylesheets/less/schedule.less @@ -266,13 +266,13 @@ td.schedule-adminbind { background-color: @calendar-category-15; } &.schedule-category16 { - background-color: $calendar-category-16; + background-color: @calendar-category-16; } &.schedule-category17 { - background-color: $calendar-category-17; + background-color: @calendar-category-17; } &.schedule-category18 { - background-color: $calendar-category-18; + background-color: @calendar-category-18; } &.schedule-category255 { background-color: @calendar-category-255; @@ -449,36 +449,36 @@ div.schedule_entry { } } &.schedule-category16 { - background-color: $calendar-category-16-aux; - border: 1px solid $calendar-category-16; + background-color: @calendar-category-16-aux; + border: 1px solid @calendar-category-16; dt { - background-color: $calendar-category-16; - color: contrast($calendar-category-16, $black, $white); + background-color: @calendar-category-16; + color: contrast(@calendar-category-16, black, white); } dd { - color: contrast($calendar-category-16-aux, $black, $white); + color: contrast(@calendar-category-16-aux, black, white); } } &.schedule-category17 { - background-color: $calendar-category-17-aux; - border: 1px solid $calendar-category-17; + background-color: @calendar-category-17-aux; + border: 1px solid @calendar-category-17; dt { - background-color: $calendar-category-17; - color: contrast($calendar-category-17, $black, $white); + background-color: @calendar-category-17; + color: contrast(@calendar-category-17, black, white); } dd { - color: contrast($calendar-category-17-aux, $black, $white); + color: contrast(@calendar-category-17-aux, black, white); } } &.schedule-category18 { - background-color: $calendar-category-18-aux; - border: 1px solid $calendar-category-18; + background-color: @calendar-category-18-aux; + border: 1px solid @calendar-category-18; dt { - background-color: $calendar-category-18; - color: contrast($calendar-category-18, $black, $white); + background-color: @calendar-category-18; + color: contrast(@calendar-category-18, black, white); } dd { - color: contrast($calendar-category-18-aux, $black, $white); + color: contrast(@calendar-category-18-aux, black, white); } } } -- GitLab