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
34 lines
614 B
/* Beispiel aus
|
|
https://github.com/EliverLara/Ant/blob/master/gtk-3.0/gtk-widgets.css
|
|
*/
|
|
|
|
/*
|
|
GtkTreeView {
|
|
-GtkTreevew-vertical-separator: 6;
|
|
-GtkWidget-focus-line-width: 1;
|
|
-GtkWidget-focus-padding: 1;
|
|
}
|
|
|
|
GtkTreeView {
|
|
border: 1px solid @bg_color;
|
|
}
|
|
|
|
GtkTreeView.view:selected {
|
|
border: none;
|
|
}
|
|
|
|
GtkTreeView.dnd {
|
|
padding: 6px 6px;
|
|
border-width: 1px;
|
|
border-style: solid;
|
|
border-color: shade(@selected_bg_color, 0.9);
|
|
border-radius: 0;
|
|
}
|
|
|
|
GtkTreeView .entry {
|
|
padding: 6px 6px;
|
|
border-radius: 0;
|
|
background-color: @base_color;
|
|
background-image: none;
|
|
}
|
|
*/
|