blob: f2883fda46f172ede949d9dc522a54b7613dddb0 (
plain)
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
|
/* GTK3 WIDGET STYLING */
/*
* Keep in order of:
* General -> Specific
* Order of appearance in widget tree.
* See GtkInspector
* GTK_DEBUG=interactive ~/path_to_gtk3/bin/inkscape
*
* We need a standardized naming scheme.
*
* As of Gtk 3.20, you cannot use widget names.
*/
/* Standard theme based colors. Prefer these.
*
* @theme_bg_color
* @theme_fg_color
* @theme_base_color
* @theme_text_color
* @theme_selected_bg_color
* @theme_selected_fg_color
* @theme_tooltip_bg_color
* @theme_tooltip_fg_color
*
*/
/* Our own custom shades... better not to use.
* Lightest to darkest based on linear rgb.
*/
@define-color bg_color0 #ffffff; /* White */
@define-color bg_color05 #f8f8f8; /* Slightly off white */
@define-color bg_color1 #f0f0f0;
@define-color bg_color2 #e0e0e0;
@define-color bg_color3 #d0d0d0;
@define-color bg_color4 #bbbbbb; /* 50% Gray */
@define-color bg_color5 #a5a5a5;
@define-color bg_color6 #898989;
@define-color bg_color7 #636363;
@define-color bg_color8 #000000; /* Black */
/* 'GtkWidget' for Gtk <= 3.18 */
/* 'widget' for Gtk <= 3.19.2 */
GtkWidget, widget {
/* font-size: 12pt; */
}
GtkSpinButton {
padding: 0;
}
spinbutton {
padding: 0;
}
GtkSpinButton.entry {
padding-left: 2px;
}
spinbutton.entry {
padding-left: 2px;
}
SPRuler {
background-color: @theme_bg_color;
color: @theme_fg_color;
}
ruler-widget {
background-color: @theme_bg_color;
color: @theme_fg_color;
}
/* The actual canvas (Inkscape's drawing area). */
SPCanvas {
background-color: white;
}
combobox window.popup scrolledwindow treeview separator {
}
#font_selector_family {
}
#TextFontFamilyAction_combobox {
-GtkComboBox-appears-as-list: true;
}
#LockGuides {
padding: 0;
}
|