You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
614 B

  1. /* Beispiel aus
  2. https://github.com/EliverLara/Ant/blob/master/gtk-3.0/gtk-widgets.css
  3. */
  4. /*
  5. GtkTreeView {
  6. -GtkTreevew-vertical-separator: 6;
  7. -GtkWidget-focus-line-width: 1;
  8. -GtkWidget-focus-padding: 1;
  9. }
  10. GtkTreeView {
  11. border: 1px solid @bg_color;
  12. }
  13. GtkTreeView.view:selected {
  14. border: none;
  15. }
  16. GtkTreeView.dnd {
  17. padding: 6px 6px;
  18. border-width: 1px;
  19. border-style: solid;
  20. border-color: shade(@selected_bg_color, 0.9);
  21. border-radius: 0;
  22. }
  23. GtkTreeView .entry {
  24. padding: 6px 6px;
  25. border-radius: 0;
  26. background-color: @base_color;
  27. background-image: none;
  28. }
  29. */