@ -1,9 +1,11 @@
$ fullColorGradient : rgba ( 244 , 245 , 246 , 0 . 2 ) ;
. event {
overflow-x : hidden ;
margin : 4px 2px ;
padding : 5px ;
border-bottom : 1px solid $ borderColor ;
border-left : 4px solid $ borderColor ;
border-bottom : 1px solid var ( --calendarBorderColor ) ;
border-left : 4px solid var ( --calendarBorderColor ) ;
font-size : 12px ;
& : global ( . colorImpaired ) {
@ -25,7 +27,7 @@
}
. artistName {
color : # 3a3f51 ;
color : var ( --calendarTextDimAlternate ) ;
font-size : $ defaultFontSize ;
}
@ -42,38 +44,50 @@
* /
. downloaded {
border-left-color : $ successColor ! important ;
border-left-color : var ( --successColor ) ! important ;
& : global ( . colorImpaired ) {
border-left-color : color ( $ successColor , saturation ( + 15 % ) ) ! important ;
border-left-color : color ( # 27c24c saturation ( + 15 % ) ) ! important ;
}
}
. downloading {
border-left-color : $ purple ! important ;
border-left-color : var ( --purple ) ! important ;
& : global ( . fullColor ) {
background-color : rgba ( 122 , 67 , 182 , 0 . 4 ) ! important ;
}
}
. unmonitored {
border-left-color : $ gray ! important ;
border-left-color : var ( --gray ) ! important ;
& : global ( . fullColor ) {
background-color : rgba ( 173 , 173 , 173 , 0 . 5 ) ! important ;
}
& : global ( . colorImpaired ) {
background : repeating-linear-gradient ( 90deg , $ colorImpairedGradientDark , $ colorImpairedGradientDark 5px , $ colorImpairedGradient 5px , $ colorImpairedGradient 10px ) ;
background : repeating-linear-gradient ( 45deg , var ( --colorImpairedGradientDark ) , var ( --colorImpairedGradientDark ) 5px , var ( --colorImpairedGradient ) 5px , var ( --colorImpairedGradient ) 10px ) ;
}
& : global ( . fullColor . colorImpaired ) {
background : repeating-linear-gradient ( 45deg , $ fullColorGradient , $ fullColorGradient 5px , transparent 5px , transparent 10px ) ;
}
}
. missing {
border-left-color : $ dangerColor ! important ;
border-left-color : var ( --dangerColor ) ! important ;
& : global ( . colorImpaired ) {
border-left-color : color ( $ dangerColor saturation ( + 15 % ) ) ! important ;
background : repeating-linear-gradient ( 90deg , $ colorImpairedGradientDark , $ colorImpairedGradientDark 5px , $ colorImpairedGradient 5px , $ colorImpairedGradient 10px ) ;
border-left-color : color ( # f05050 saturation ( + 15 % ) ) ! important ;
background : repeating-linear-gradient ( 90deg , var ( --colorImpairedGradientDark ) , var ( --colorImpairedGradientDark ) 5px , var ( --colorImpairedGradient ) 5px , var ( --colorImpairedGradient ) 10px ) ;
}
}
. unreleased {
border-left-color : $ primaryColor ! important ;
border-left-color : var ( --primaryColor ) ! important ;
& : global ( . colorImpaired ) {
background : repeating-linear-gradient ( 90deg , $ colorImpairedGradientDark , $ colorImpairedGradientDark 5px , $ colorImpairedGradient 5px , $ colorImpairedGradient 10px ) ;
background : repeating-linear-gradient ( 90deg , var ( --colorImpairedGradientDark ) , var ( --colorImpairedGradientDark ) 5px , var ( --colorImpairedGradient ) 5px , var ( --colorImpairedGradient ) 10px ) ;
}
}