2012-09-28 04:30:57 +02:00
|
|
|
/* custom GTK3 CSS for Geany */
|
|
|
|
|
|
|
|
/* make close button on the editor's tabs smaller */
|
|
|
|
#geany-close-tab-button {
|
|
|
|
padding: 0;
|
|
|
|
}
|
2016-04-26 21:44:35 +02:00
|
|
|
#geany-close-tab-button GtkImage /* GTK < 3.20 */,
|
|
|
|
#geany-close-tab-button image /* GTK >= 3.20 */ {
|
2015-03-06 17:36:15 +01:00
|
|
|
padding: 0;
|
|
|
|
}
|
2012-09-28 04:30:57 +02:00
|
|
|
|
|
|
|
/* use monospaced font in search entries for easier reading of regexp (#1907117) */
|
2016-04-26 21:44:35 +02:00
|
|
|
#GeanyDialogSearch GtkEntry /* GTK < 3.20 */,
|
|
|
|
#GeanyDialogSearch entry /* GTK >= 3.20 */ {
|
2012-09-28 04:30:57 +02:00
|
|
|
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 {
|
|
|
|
background-color: #771111;
|
|
|
|
}
|
2013-02-11 04:47:21 +01:00
|
|
|
|
|
|
|
/* document status colors */
|
|
|
|
#geany-document-status-changed {
|
|
|
|
color: #ff0000;
|
|
|
|
}
|
|
|
|
#geany-document-status-disk-changed {
|
|
|
|
color: #ff7f00;
|
|
|
|
}
|
|
|
|
#geany-document-status-readonly {
|
|
|
|
color: #007f00;
|
|
|
|
}
|
2015-04-24 22:15:10 +02:00
|
|
|
|
|
|
|
/* red "Terminal" label when terminal dirty */
|
|
|
|
#geany-terminal-dirty {
|
|
|
|
color: #ff0000;
|
|
|
|
}
|