_nemo.scss 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /********
  2. ! Nemo *
  3. *********/
  4. @include exports("nemo") {
  5. .nemo-desktop.nemo-canvas-item {
  6. color: $white;
  7. text-shadow: 1px 1px $black;
  8. &:active { color: $fg_color; }
  9. &:selected { color: $selected_fg_color; }
  10. &:active, &:hover, &:selected { text-shadow: none; }
  11. }
  12. NemoPathbarButton {
  13. @include button($toolbar_bg_color, $toolbar_fg_color);
  14. -NemoPathbarButton-border-radius: $roundness;
  15. }
  16. NemoPlacesTreeView {
  17. -NemoPlacesTreeView-disk-full-bg-color: shade($toolbar_bg_color, .8);
  18. -NemoPlacesTreeView-disk-full-fg-color: $selected_bg_color;
  19. -NemoPlacesTreeView-disk-full-bar-width: 1px;
  20. -NemoPlacesTreeView-disk-full-bar-radius: 1px;
  21. -NemoPlacesTreeView-disk-full-bottom-padding: 2px;
  22. -NemoPlacesTreeView-disk-full-max-length: 70px;
  23. &:selected {
  24. -NemoPlacesTreeView-disk-full-bg-color: $selected_fg_color;
  25. -NemoPlacesTreeView-disk-full-fg-color: shade($selected_bg_color, 1.2);
  26. }
  27. }
  28. }