Warning, /plasma/breeze-gtk/src/gtk3/widgets/_calendar.scss is written in an unsupported language. File is not indexed.
0001 @charset "UTF-8";
0002
0003 /************
0004 * Calendar *
0005 ***********/
0006 calendar {
0007 color: gtk("@theme_text_color");
0008 border: 1px solid gtk("@borders");
0009 background-color: gtk("@theme_base_color");
0010 &:selected {
0011 background-color: gtk("@borders");
0012 }
0013 &:disabled {
0014 color: gtk("@insensitive_base_fg_color");
0015 }
0016
0017 &.header {
0018 border: 1px solid gtk("@borders");
0019 border-radius: 0;
0020 color: gtk("@theme_text_color");
0021
0022 &:backdrop {
0023 color: gtk("@theme_unfocused_text_color");
0024 border-color: gtk("@unfocused_borders");
0025 }
0026
0027 &:disabled {
0028 color: gtk("@insensitive_base_fg_color");
0029 }
0030 }
0031
0032 &.button {
0033 @extend %undecorated_button;
0034 color: gtk("@theme_button_foreground_normal");
0035
0036 &:hover {
0037 @extend %undecorated_button;
0038 color: gtk("@theme_button_decoration_hover");
0039 }
0040 &:active {
0041 @extend %undecorated_button;
0042 color: gtk("@theme_button_decoration_focus");
0043 }
0044 &:backdrop {
0045 @extend %undecorated_button;
0046 color: gtk("@theme_button_foreground_backdrop");
0047 }
0048 }
0049
0050 &:indeterminate,
0051 &.highlight {
0052 color: gtkalpha(gtk("@theme_text_color"), 0.5);
0053 }
0054
0055 &:indeterminate:backdrop,
0056 &.highlight:backdrop {
0057 color: gtkalpha(
0058 gtk("@theme_unfocused_text_color"),
0059 0.5
0060 );
0061 }
0062
0063 &:backdrop {
0064 color: gtk("@theme_unfocused_text_color");
0065 border-color: gtk("@unfocused_borders");
0066 background-color: gtk("@theme_unfocused_base_color");
0067 }
0068 }