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.
98 lines
1.7 KiB
98 lines
1.7 KiB
/*
|
|
* see here for theming tutorial
|
|
* https://ubuntu-mate.community/t/enabling-the-gtk-inspector-to-find-css-values-for-theme-styles/20150
|
|
*/
|
|
|
|
* {
|
|
border-color: @bg_color;
|
|
border-style: solid;
|
|
|
|
-GtkTreeView-expander-size: 11;
|
|
}
|
|
|
|
selection,
|
|
*:selected:selected,
|
|
*:selected:focus {
|
|
background-color: @acc1_color;
|
|
color: @bg_color;
|
|
}
|
|
|
|
label {
|
|
color: @fg_color;
|
|
}
|
|
|
|
*:backdrop:backdrop,
|
|
*:disabled:disabled {
|
|
color: mix(@fg_color, @bg_color, 0.4);
|
|
-gtk-icon-effect: dim;
|
|
}
|
|
|
|
.background {
|
|
background: @bg_color;
|
|
}
|
|
|
|
.view,
|
|
.cell {
|
|
background: @bg_color;
|
|
color: @fg_color;
|
|
}
|
|
|
|
entry {
|
|
padding: 3px;
|
|
border-width: 1px;
|
|
background-color: @bg_color;
|
|
color: @fg_color;
|
|
}
|
|
|
|
entry:backdrop,
|
|
entry:disabled {
|
|
background: shade(@bg_color, 0.94);
|
|
}
|
|
|
|
slider:focus,
|
|
switch:focus slider,
|
|
spinbutton:focus,
|
|
notebook:focus tab:checked,
|
|
radio:focus,
|
|
check:focus,
|
|
entry:focus,
|
|
button:focus {
|
|
border-color: @acc2_color;
|
|
}
|
|
|
|
/*
|
|
.thunar toolbar {
|
|
color: @fg_color;
|
|
background-color: @bg_color;
|
|
}
|
|
|
|
.thunar .sidebar .view,
|
|
.thunar .sidebar .iconview {
|
|
color: @fg_color;
|
|
background-color: @bg_color;
|
|
}
|
|
|
|
.thunar .sidebar .view:selected,
|
|
.thunar .sidebar .iconview:selected,
|
|
.thunar .sidebar .view:active,
|
|
.thunar .sidebar .iconview:active {
|
|
color: @bg_color;
|
|
background-color: @acc1_color;
|
|
}
|
|
|
|
.thunar .standard-view .view {
|
|
color: @fg_color;
|
|
background-color: @bg_color;
|
|
}
|
|
|
|
.thunar .standard-view .view:selected,
|
|
.thunar .standard-view .iconview:selected,
|
|
.thunar .standard-view .view:active,
|
|
.thunar .standard-view .iconview:active {
|
|
color: @bg_color;
|
|
background-color: @acc1_color;
|
|
}
|
|
|
|
@import url("widgets/menu.css");
|
|
|
|
*/
|