/usr/share/gps/gps-Adwaita (Dark).css is in gnat-gps-common 6.1.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | /*
* Custom styling for GPS when using the Adwaita style
*/
/* Change the color border at the top of the active tab, when it has keyboard
* focus
*/
@define-color gps_active_tab green;
.tooltip {
text-shadow: none;
}
.notebook.mdifocused tab.top:active,
.notebook.mdifocused tab.bottom:active {
background-image: linear-gradient(to bottom,
@gps_active_tab,
@gps_active_tab 2px,
@button_gradient_color_a 3px,
@theme_base_color);
border-image-source: -gtk-gradient(linear,
left top, left bottom,
from(@gps_active_tab),
to (@borders));
}
.notebook.mdifocused tab.left:active,
.notebook.mdifocused tab.right:active {
border-image-source: -gtk-gradient(linear,
left top, right top,
from(@gps_active_tab),
to (@borders));
padding: 0px;
margin: 0px;
border-width: 0px;
border-radius: 0px;
}
.notebook.mdifocused tab.left:active {
background-image: linear-gradient(to right,
@gps_active_tab,
@gps_active_tab 2px,
@button_gradient_color_a 3px,
@theme_base_color);
}
.notebook.mdifocused tab.right:active {
background-image: linear-gradient(to left,
@gps_active_tab,
@gps_active_tab 2px,
@button_gradient_color_a 3px,
@theme_base_color);
}
.pane-separator {
background-color: @theme_bg_color;
}
/* From d10116eb77b09d8372a82de2e25894371805726c in Adwaita */
.menu .menuitem:insensitive {
background-color: transparent;
}
/* .mdi tab GtkLabel { opacity: 0.8 }
.mdifocused tab GtkLabel { opacity: 1.0 }
*/
|