diff options
author | Jesús <heckyel@hyperbola.info> | 2019-08-23 23:50:54 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2019-08-23 23:50:54 -0500 |
commit | 033f79d5f73c0e3a15976e57fcf71c7d2e0aa79b (patch) | |
tree | d9351e6999294f3ed005e821695c3d081fe0b537 /src/gtk-3.20/scss/widgets/_calendar.scss | |
download | librix-033f79d5f73c0e3a15976e57fcf71c7d2e0aa79b.tar.lz librix-033f79d5f73c0e3a15976e57fcf71c7d2e0aa79b.tar.xz librix-033f79d5f73c0e3a15976e57fcf71c7d2e0aa79b.zip |
first commit
Diffstat (limited to 'src/gtk-3.20/scss/widgets/_calendar.scss')
-rw-r--r-- | src/gtk-3.20/scss/widgets/_calendar.scss | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/src/gtk-3.20/scss/widgets/_calendar.scss b/src/gtk-3.20/scss/widgets/_calendar.scss new file mode 100644 index 0000000..5f68de3 --- /dev/null +++ b/src/gtk-3.20/scss/widgets/_calendar.scss @@ -0,0 +1,73 @@ +/********** + ! Calendar +***********/ + +@include exports("calendar") { + calendar { + padding: 1px 3px; + outline-offset: -1px; + + color: $text_color; + + &.view { + &, &:backdrop { @extend %undecorated_button; } + } + + &:selected { + @extend %selected_items; + + border-radius: $roundness; + } + + &.header { + border-bottom: 1px solid transparentize($black, .9); + border-radius: 0; + + &:backdrop { border-color: transparentize($black, .9); } + } + + &.button { + @extend %undecorated_button; + + color: alpha($fg_color, .55); + + &:hover { + @extend %undecorated_button; + + color: $fg_color; + } + + &:backdrop { + @extend %undecorated_button; + + color: alpha($backdrop_fg_color, .55); + } + + &:disabled { + @extend %undecorated_button; + + color: alpha($insensitive_fg_color, .55); + } + } + + &:indeterminate, + &:indeterminate:backdrop { color: mix($fg_color, $bg_color, .5); } + + &.highlight, + &.highlight:backdrop { + font-size: smaller; + color: $selected_bg_color; + } + + &:backdrop { + color: $backdrop_text_color; + } + } + + /* gnome-calendar */ + .calendar-view { + background-color: $base_color; + color: $text_color; + } +} + |