_calendar.scss 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /************
  2. * Calendar *
  3. ***********/
  4. calendar {
  5. color: $text_color;
  6. border: 1px solid $borders_color;
  7. &:selected {
  8. @extend %selected_items;
  9. border-radius: 3px;
  10. }
  11. &.header {
  12. border-bottom: 1px solid transparentize(black, 0.9);
  13. border-radius: 0;
  14. &:backdrop { border-color: transparentize(black, 0.9); }
  15. }
  16. &.button {
  17. @extend %undecorated_button;
  18. color: transparentize($fg_color, 0.55);
  19. &:hover {
  20. @extend %undecorated_button;
  21. color: $fg_color;
  22. }
  23. &:backdrop {
  24. @extend %undecorated_button;
  25. color: transparentize($backdrop_fg_color,0.55);
  26. }
  27. &:disabled {
  28. @extend %undecorated_button;
  29. color: transparentize($insensitive_fg_color,0.55);
  30. }
  31. }
  32. &:indeterminate,
  33. &:indeterminate:backdrop { color: gtkalpha(currentColor, 0.55); }
  34. &.highlight,
  35. &.highlight:backdrop {
  36. font-size: smaller;
  37. color: $fg_color;
  38. }
  39. &:backdrop {
  40. color: $backdrop_text_color;
  41. border-color: $backdrop_borders_color;
  42. }
  43. }