This file is indexed.

/usr/share/geany/geany.css is in geany-common 1.32-2.

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
/* custom GTK3 CSS for Geany */

/* make close button on the editor's tabs smaller */
#geany-close-tab-button {
	padding: 0;
}
#geany-close-tab-button GtkImage /* GTK < 3.20 */,
#geany-close-tab-button image /* GTK >= 3.20 */ {
	padding: 0;
}

/* use monospaced font in search entries for easier reading of regexp (#1907117) */
#GeanyDialogSearch GtkEntry /* GTK < 3.20 */,
#GeanyDialogSearch entry /* GTK >= 3.20 */ {
	font-family: monospace;
}

/* set red background for GtkEntries showing unmatched searches */
#geany-search-entry-no-match {
	color: #fff;
	background: #ff6666;
}
#geany-search-entry-no-match:selected /* GTK < 3.20 */,
#geany-search-entry-no-match selection /* GTK >= 3.20 */ {
	background-color: #771111;
}

/* document status colors */
#geany-document-status-changed {
	color: #ff0000;
}
#geany-document-status-disk-changed {
	color: #ff7f00;
}
#geany-document-status-readonly {
	color: #007f00;
}

/* red "Terminal" label when terminal dirty */
#geany-terminal-dirty {
	color: #ff0000;
}