Browse Source

gtk colors now inherited

master
Marc 4 years ago
parent
commit
62d5d59d6e
1 changed files with 25 additions and 10 deletions
  1. 35
      .config/gtk-3.0/shared.css

35
.config/gtk-3.0/shared.css

@ -3,18 +3,38 @@
* https://ubuntu-mate.community/t/enabling-the-gtk-inspector-to-find-css-values-for-theme-styles/20150 * https://ubuntu-mate.community/t/enabling-the-gtk-inspector-to-find-css-values-for-theme-styles/20150
*/ */
/*************
* base states
*************/
.background {
color: @fg_color;
background: @bg_color;
}
/* inherit colors from parent */
* {
background-color: inherit;
color: inherit;
}
selection,
*:selected:selected,
*:selected:focus {
background-color: @acc1_color;
color: @bg_color;
}
/*
* { * {
border-color: @bg_color; border-color: @bg_color;
border-style: solid; border-style: solid;
-GtkTreeView-expander-size: 11; -GtkTreeView-expander-size: 11;
} }
/*
viewport {
background: @bg_color;
color: @fg_color;
}
*/ */
selection, selection,
*:selected:selected, *:selected:selected,
*:selected:focus { *:selected:focus {
@ -38,11 +58,6 @@ label {
-gtk-icon-effect: dim; -gtk-icon-effect: dim;
} }
.background {
color: @fg_color;
background: @bg_color;
}
.view, .view,
.cell { .cell {
background: @bg_color; background: @bg_color;

Loading…
Cancel
Save