9f0bfec045
Right now users are confused when various VTE actions don't work because there's no indication that the terminal is in the non-clean state. Visualise "modified" terminal in the same way as modified document - by a red label in the tab so it's clearer when terminal isn't clean. Avoid quick red flashes when pressing enter by delaying the color change a bit.
45 lines
971 B
CSS
45 lines
971 B
CSS
/* custom GTK3 CSS for Geany */
|
|
|
|
/* make close button on the editor's tabs smaller */
|
|
#geany-close-tab-button {
|
|
-GtkWidget-focus-padding: 0;
|
|
-GtkWidget-focus-line-width: 0;
|
|
-GtkButton-default-border: 0;
|
|
-GtkButton-default-outside-border: 0;
|
|
-GtkButton-inner-border: 0;
|
|
padding: 0;
|
|
}
|
|
#geany-close-tab-button GtkImage {
|
|
padding: 0;
|
|
}
|
|
|
|
/* use monospaced font in search entries for easier reading of regexp (#1907117) */
|
|
#GeanyDialogSearch GtkEntry {
|
|
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;
|
|
}
|
|
|
|
/* 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;
|
|
}
|