comparison gtk-2.0/gtkrc @ 7:cd7ad7cfd077

Fix Gimp combo box text and Firefox bright blue in address bar URLs
author IBBoard <dev@ibboard.co.uk>
date Sat, 16 Apr 2016 17:01:06 +0100
parents 043c874084ba
children 164e172bfe56
comparison
equal deleted inserted replaced
6:043c874084ba 7:cd7ad7cfd077
20 GtkToolButton::icon-spacing = 4 20 GtkToolButton::icon-spacing = 4
21 21
22 GtkWidget::tooltip-radius = 3 22 GtkWidget::tooltip-radius = 3
23 GtkWidget::tooltip-alpha = 235 23 GtkWidget::tooltip-alpha = 235
24 GtkWidget::new-tooltip-style = 1 #for compatibility 24 GtkWidget::new-tooltip-style = 1 #for compatibility
25 GtkWidget::link-color = @selected_bg_color
25 26
26 GtkSeparatorMenuItem::horizontal-padding = 3 27 GtkSeparatorMenuItem::horizontal-padding = 3
27 GtkSeparatorMenuItem::wide-separators = 1 28 GtkSeparatorMenuItem::wide-separators = 1
28 GtkSeparatorMenuItem::separator-height = 1 29 GtkSeparatorMenuItem::separator-height = 1
29 30
705 { 706 {
706 xthickness = 0 707 xthickness = 0
707 ythickness = 0 708 ythickness = 0
708 709
709 GtkMenuItem::arrow-scaling = 0.4 710 GtkMenuItem::arrow-scaling = 0.4
711 fg[NORMAL] = @fg_dark_color
710 fg[PRELIGHT] = @selected_fg_color 712 fg[PRELIGHT] = @selected_fg_color
711 fg[ACTIVE] = @selected_fg_color 713 fg[ACTIVE] = @selected_fg_color
712 fg[SELECTED] = @selected_fg_color 714 fg[SELECTED] = @selected_fg_color
713 715
714 bg[NORMAL] = @bg_dark_color 716 bg[NORMAL] = @bg_dark_color
749 751
750 fg[NORMAL] = @fg_dark_color 752 fg[NORMAL] = @fg_dark_color
751 bg[PRELIGHT] = @selected_bg_color 753 bg[PRELIGHT] = @selected_bg_color
752 fg[PRELIGHT] = @selected_fg_color 754 fg[PRELIGHT] = @selected_fg_color
753 text[PRELIGHT] = @selected_fg_color 755 text[PRELIGHT] = @selected_fg_color
756 #HACK: Gimp and Inkscape are showing bevelling, but LibreOffice isn't
757 # So set a dark colour to let the bevel be our colour
758 fg[INSENSITIVE] = @bg_dark_color
754 759
755 engine "pixmap" 760 engine "pixmap"
756 { 761 {
757 762
758 # Check Buttons 763 # Check Buttons
930 style "menubar_item" 935 style "menubar_item"
931 { 936 {
932 xthickness = 2 937 xthickness = 2
933 ythickness = 3 938 ythickness = 3
934 bg[PRELIGHT] = @selected_fg_color 939 bg[PRELIGHT] = @selected_fg_color
935 fg[PRELIGHT] = @text_color 940 fg[PRELIGHT] = @selected_bg_color
936 } 941 }
937 942
938 style "button" 943 style "button"
939 { 944 {
940 xthickness = 3 945 xthickness = 3
2389 widget "*openoffice-toplevel*" style "ooo_stepper_hack" 2394 widget "*openoffice-toplevel*" style "ooo_stepper_hack"
2390 widget "*openoffice-toplevel*GtkEntry" style "libreoffice_entry" 2395 widget "*openoffice-toplevel*GtkEntry" style "libreoffice_entry"
2391 widget "*openoffice-toplevel*GtkSpinButton" style "libreoffice_spinbutton_entry" 2396 widget "*openoffice-toplevel*GtkSpinButton" style "libreoffice_spinbutton_entry"
2392 widget "*libreoffice-toplevel*GtkEntry" style "libreoffice_entry" 2397 widget "*libreoffice-toplevel*GtkEntry" style "libreoffice_entry"
2393 widget "*libreoffice-toplevel*GtkSpinButton" style "libreoffice_spinbutton_entry" 2398 widget "*libreoffice-toplevel*GtkSpinButton" style "libreoffice_spinbutton_entry"
2399
2400
2401 # For menus where the text color is used instead of the fg color.
2402 style "menuitem_text_is_fg_color_workaround" {
2403
2404 text[NORMAL] = shade (0.97, @base_color)
2405 text[PRELIGHT] = @selected_fg_color
2406 text[SELECTED] = @selected_fg_color
2407 text[ACTIVE] = @fg_color
2408 text[INSENSITIVE] = darker (@bg_color)
2409 }
2410 widget "*.gtk-combobox-popup-menu.*" style "menuitem_text_is_fg_color_workaround"