Update French translation
[geany-mirror.git] / data / geany.css
blobff1fe354c6a87d773ba257c71a958e06ba7f7b8a
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 color: #fff;
26 background-color: #771111;
29 /* document status colors */
30 #geany-document-status-changed {
31 color: #ff0000;
33 #geany-document-status-disk-changed {
34 color: #ff7f00;
36 #geany-document-status-readonly {
37 color: #007f00;
40 /* compiler message colors */
41 #geany-compiler-error {
42 color: #ff0000;
44 #geany-compiler-context {
45 color: #7f0000;
47 #geany-compiler-message {
48 color: #0000D0;
51 /* red "Terminal" label when terminal dirty */
52 #geany-terminal-dirty {
53 color: #ff0000;