2023-09-26 00:35:21 +02:00
|
|
|
/* The specific light theme interface styles for PIKA 3.0 */
|
|
|
|
/* Theme specific colors are defined in pika-dark.css */
|
|
|
|
|
|
|
|
/* Hint for debugging themes:
|
|
|
|
* first enable the GTK inspector with
|
|
|
|
gsettings set org.gtk.Settings.Debug enable-inspector-keybinding true
|
|
|
|
* then (after restarting PIKA) call it up with ctrl+shift+i
|
|
|
|
* or from PIKA's UI: File > Debug > Start GtkInspector
|
|
|
|
*/
|
|
|
|
|
|
|
|
@import url("common.css");
|
|
|
|
|
2023-10-30 23:55:30 +01:00
|
|
|
/* Highlight icons in Grid View when hovered over */
|
|
|
|
iconview:hover {
|
|
|
|
background-color: @fg-color;
|
|
|
|
}
|
|
|
|
|
2023-09-26 00:35:21 +02:00
|
|
|
/*
|
|
|
|
* Paned separator handles
|
|
|
|
*/
|
|
|
|
paned.horizontal > separator {
|
|
|
|
background-image: url("ui/separator-handle-v-dark.svg");
|
|
|
|
background-color: @bg-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
paned.vertical > separator {
|
|
|
|
background-image: url("ui/separator-handle-h-dark.svg");
|
|
|
|
background-color: @bg-color;
|
|
|
|
}
|
|
|
|
|
2023-12-02 20:03:24 +01:00
|
|
|
/* Top highlight for buttons */
|
|
|
|
button:not(.flat) {
|
|
|
|
box-shadow: 0 1px @extreme-selected-color inset;
|
|
|
|
}
|