aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/interface-gtk/fallback.css
blob: 1be431b27ab648e5b6285fa2ff50f161ada4b7d8 (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
/*
 * This CSS will loaded as a fallback if there is no
 * $SCITECOCONFIG/.teco_css.
 * It tries to apply the current SciTECO color scheme
 * by using predefined variables (see sciteco(7)).
 * This may cause problems with your current Gtk theme.
 * You can copy this file to $SCITECOCONFIG/.teco_css
 * to fix it up or add other style customizations.
 */

.titlebar, /* info bar in CSD mode */
#sciteco-info-bar,
#sciteco-info-bar GtkLabel {
	color: @sciteco_default_bg_color;
	text-shadow: none;
	background-color: @sciteco_default_fg_color;
	background-image: none;
}

/*
 * The "question" class refers to G_MESSAGE_QUESTION.
 * This is used for showing user-level messages for the sole
 * reason that there is no class for G_MESSAGE_OTHER that
 * we could use for styling.
 */
#sciteco-message-bar.question {
	color: @sciteco_default_bg_color;
	text-shadow: none;
	background-color: @sciteco_default_fg_color;
	background-image: none;
}

#sciteco-cmdline {
	color: @sciteco_default_fg_color;
	text-shadow: none;
	background-color: @sciteco_default_bg_color;
	background-image: none;
}

#sciteco-info-popup,
#sciteco-info-popup GtkLabel {
	color: @sciteco_calltip_fg_color;
	text-shadow: none;
	background-color: @sciteco_calltip_bg_color;
	background-image: none;
}