/usr/share/sushi/style/gtk-style.css is in gnome-sushi 0.4.1-0ubuntu1.
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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 | @define-color np_fg_color #ddddde;
@define-color np_bg_color #333;
@define-color np_text_color #2e3436;
@define-color info_bg_color @np_bg_color;
@define-color info_fg_color @np_fg_color;
* {
background-color: alpha(#000, 0.0);
}
GtkWindow {
color: @np_fg_color;
}
SushiFontWidget {
padding: 2px;
}
GtkSourceView {
color: @np_text_color;
background-color: shade (@np_fg_color, 1.10);
font: Monospace 10;
}
.scrollbar.slider,
.scrollbar.button {
background-color: shade (@np_bg_color, 1.30);
}
.scrollbar.button:prelight,
.scrollbar.slider:prelight {
background-color: shade (@np_bg_color, 1.45);
}
.scrollbar.button:prelight:active,
.scrollbar.slider:prelight:active {
background-color: shade (@np_bg_color, 1.70);
}
.np-toolbar {
border-style: none;
border-radius: 3px;
border-width: 0;
background-color: @np_bg_color;
}
.np-toolbar GtkSeparatorToolItem {
-GtkWidget-wide-separators: 1;
-GtkWidget-separator-width: 1;
border-width: 1px;
border-style: solid;
}
.np-toolbar .button {
border-image: none;
background-image: -gtk-gradient(linear,
left top, left bottom,
from(#333),
color-stop(0.50, shade (#333, 1.40)),
to (#333));
}
.np-toolbar .button:hover {
background-image: -gtk-gradient(linear,
left top, left bottom,
from(shade(#333, 1.20)),
color-stop(0.50, shade (#333, 1.60)),
to (shade(#333, 1.20)));
}
.np-toolbar GtkLabel {
font: Cantarell 8;
}
.np-decoration {
font: bold;
}
.np-decoration.button {
background-image: none;
padding: 4px;
border-image: none;
border-style: none;
border-radius: 0;
border-width: 0;
background-color: alpha (#000, 0.0);
-GtkWidget-focus-line-width: 0;
}
.np-decoration.button:hover {
background-image: -gtk-gradient(linear,
left top,
left bottom,
from(alpha(#333, 0.0)),
color-stop(0.50, alpha(#333, 0.66)),
to(alpha(#333, 0.0)));
}
.np-decoration.button:hover:active {
background-image: -gtk-gradient(linear,
left top,
left bottom,
from(alpha(#333, 0.0)),
color-stop(0.50, #333),
to(alpha(#333, 0.0)));
}
|