Merge pull request #1667 from eht16/issue1018_win_execute_builtin_path
[geany-mirror.git] / data / geany.css
blob1c1f4cf98675867c781282705cc9c47fd2ba927e
1 /* custom GTK3 CSS for Geany */
3 /* make close button on the editor's tabs smaller */
4 #geany-close-tab-button {
5 padding: 0;
7 #geany-close-tab-button GtkImage /* GTK < 3.20 */,
8 #geany-close-tab-button image /* GTK >= 3.20 */ {
9 padding: 0;
12 /* use monospaced font in search entries for easier reading of regexp (#1907117) */
13 #GeanyDialogSearch GtkEntry /* GTK < 3.20 */,
14 #GeanyDialogSearch entry /* GTK >= 3.20 */ {
15 font-family: monospace;
18 /* set red background for GtkEntries showing unmatched searches */
19 #geany-search-entry-no-match {
20 color: #fff;
21 background: #ff6666;
23 #geany-search-entry-no-match:selected /* GTK < 3.20 */,
24 #geany-search-entry-no-match selection /* GTK >= 3.20 */ {
25 background-color: #771111;
28 /* document status colors */
29 #geany-document-status-changed {
30 color: #ff0000;
32 #geany-document-status-disk-changed {
33 color: #ff7f00;
35 #geany-document-status-readonly {
36 color: #007f00;
39 /* red "Terminal" label when terminal dirty */
40 #geany-terminal-dirty {
41 color: #ff0000;