diff --git a/gtk-2.0/apps.rc b/gtk-2.0/apps.rc new file mode 100755 index 0000000..916acfd --- /dev/null +++ b/gtk-2.0/apps.rc @@ -0,0 +1,99 @@ +# vim:set ft=gtkrc ts=2 sw=2 sts=2 ai et: +# +# This file, unlike hacks.rc, contains legitimate cases we need to handle, e.g. +# custom widgets, programs giving us a chance to alter their UI to fit more with +# the theme or stuff that is supposed to look different, like panels. + +# TODO: This could really look nicer +style "gimp_spin_scale" { + + # Spin background + bg[NORMAL] = @base_color + + engine "pixmap" { + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + overlay_file = "assets/spin-up.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + overlay_file = "assets/spin-up.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + overlay_file = "assets/spin-up.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + overlay_file = "assets/spin-up-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + overlay_file = "assets/spin-down.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + overlay_file = "assets/spin-down.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + overlay_file = "assets/spin-down.png" + overlay_stretch = FALSE + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + overlay_file = "assets/spin-down-insensitive.png" + overlay_stretch = FALSE + } + + } + +} + +style "chrome_gtk_frame" { + + ChromeGtkFrame::frame-color = @window_color + ChromeGtkFrame::frame-gradient-color = @window_color + ChromeGtkFrame::inactive-frame-color = @bg_color + + ChromeGtkFrame::incognito-frame-color = "#cbd2d9" + ChromeGtkFrame::incognito-frame-gradient-color = "#cbd2d9" + ChromeGtkFrame::incognito-inactive-frame-color = mix (0.5, @bg_color, "#cbd2d9") + +} + +# Disable spin button assets for GimpSpinScale +class "GimpSpinScale" style "gimp_spin_scale" + +# Chromium lets us define some colours and settings for better integration +class "ChromeGtkFrame" style "chrome_gtk_frame" diff --git a/gtk-2.0/assets/border.png b/gtk-2.0/assets/border.png new file mode 100644 index 0000000..990a9be Binary files /dev/null and b/gtk-2.0/assets/border.png differ diff --git a/gtk-2.0/assets/button-active.png b/gtk-2.0/assets/button-active.png new file mode 100644 index 0000000..acc8227 Binary files /dev/null and b/gtk-2.0/assets/button-active.png differ diff --git a/gtk-2.0/assets/button-hover.png b/gtk-2.0/assets/button-hover.png new file mode 100644 index 0000000..5f71c4b Binary files /dev/null and b/gtk-2.0/assets/button-hover.png differ diff --git a/gtk-2.0/assets/button-insensitive.png b/gtk-2.0/assets/button-insensitive.png new file mode 100644 index 0000000..3d5f12e Binary files /dev/null and b/gtk-2.0/assets/button-insensitive.png differ diff --git a/gtk-2.0/assets/button.png b/gtk-2.0/assets/button.png new file mode 100644 index 0000000..9be5857 Binary files /dev/null and b/gtk-2.0/assets/button.png differ diff --git a/gtk-2.0/assets/checkbox-checked-active.png b/gtk-2.0/assets/checkbox-checked-active.png new file mode 100644 index 0000000..ddd282e Binary files /dev/null and b/gtk-2.0/assets/checkbox-checked-active.png differ diff --git a/gtk-2.0/assets/checkbox-checked-insensitive.png b/gtk-2.0/assets/checkbox-checked-insensitive.png new file mode 100644 index 0000000..ec882cb Binary files /dev/null and b/gtk-2.0/assets/checkbox-checked-insensitive.png differ diff --git a/gtk-2.0/assets/checkbox-checked.png b/gtk-2.0/assets/checkbox-checked.png new file mode 100644 index 0000000..ddd282e Binary files /dev/null and b/gtk-2.0/assets/checkbox-checked.png differ diff --git a/gtk-2.0/assets/checkbox-mixed-active.png b/gtk-2.0/assets/checkbox-mixed-active.png new file mode 100644 index 0000000..b0e02ff Binary files /dev/null and b/gtk-2.0/assets/checkbox-mixed-active.png differ diff --git a/gtk-2.0/assets/checkbox-mixed-insensitive.png b/gtk-2.0/assets/checkbox-mixed-insensitive.png new file mode 100644 index 0000000..bd9ca13 Binary files /dev/null and b/gtk-2.0/assets/checkbox-mixed-insensitive.png differ diff --git a/gtk-2.0/assets/checkbox-mixed.png b/gtk-2.0/assets/checkbox-mixed.png new file mode 100644 index 0000000..b0e02ff Binary files /dev/null and b/gtk-2.0/assets/checkbox-mixed.png differ diff --git a/gtk-2.0/assets/checkbox-unchecked-active.png b/gtk-2.0/assets/checkbox-unchecked-active.png new file mode 100644 index 0000000..cfcc753 Binary files /dev/null and b/gtk-2.0/assets/checkbox-unchecked-active.png differ diff --git a/gtk-2.0/assets/checkbox-unchecked-hover.png b/gtk-2.0/assets/checkbox-unchecked-hover.png new file mode 100644 index 0000000..1ef5e6d Binary files /dev/null and b/gtk-2.0/assets/checkbox-unchecked-hover.png differ diff --git a/gtk-2.0/assets/checkbox-unchecked-insensitive.png b/gtk-2.0/assets/checkbox-unchecked-insensitive.png new file mode 100644 index 0000000..da462a8 Binary files /dev/null and b/gtk-2.0/assets/checkbox-unchecked-insensitive.png differ diff --git a/gtk-2.0/assets/checkbox-unchecked.png b/gtk-2.0/assets/checkbox-unchecked.png new file mode 100644 index 0000000..cfcc753 Binary files /dev/null and b/gtk-2.0/assets/checkbox-unchecked.png differ diff --git a/gtk-2.0/assets/combo-entry-ltr-button-active.png b/gtk-2.0/assets/combo-entry-ltr-button-active.png new file mode 100644 index 0000000..357d3e2 Binary files /dev/null and b/gtk-2.0/assets/combo-entry-ltr-button-active.png differ diff --git a/gtk-2.0/assets/combo-entry-ltr-button-hover.png b/gtk-2.0/assets/combo-entry-ltr-button-hover.png new file mode 100644 index 0000000..643462c Binary files /dev/null and b/gtk-2.0/assets/combo-entry-ltr-button-hover.png differ diff --git a/gtk-2.0/assets/combo-entry-ltr-button-insensitive.png b/gtk-2.0/assets/combo-entry-ltr-button-insensitive.png new file mode 100644 index 0000000..6f23ff7 Binary files /dev/null and b/gtk-2.0/assets/combo-entry-ltr-button-insensitive.png differ diff --git a/gtk-2.0/assets/combo-entry-ltr-button.png b/gtk-2.0/assets/combo-entry-ltr-button.png new file mode 100644 index 0000000..4529de7 Binary files /dev/null and b/gtk-2.0/assets/combo-entry-ltr-button.png differ diff --git a/gtk-2.0/assets/combo-entry-ltr-entry-active.png b/gtk-2.0/assets/combo-entry-ltr-entry-active.png new file mode 100644 index 0000000..4443328 Binary files /dev/null and b/gtk-2.0/assets/combo-entry-ltr-entry-active.png differ diff --git a/gtk-2.0/assets/combo-entry-ltr-entry-insensitive.png b/gtk-2.0/assets/combo-entry-ltr-entry-insensitive.png new file mode 100644 index 0000000..54aab84 Binary files /dev/null and b/gtk-2.0/assets/combo-entry-ltr-entry-insensitive.png differ diff --git a/gtk-2.0/assets/combo-entry-ltr-entry.png b/gtk-2.0/assets/combo-entry-ltr-entry.png new file mode 100644 index 0000000..ddb1e5b Binary files /dev/null and b/gtk-2.0/assets/combo-entry-ltr-entry.png differ diff --git a/gtk-2.0/assets/combo-entry-rtl-button-active.png b/gtk-2.0/assets/combo-entry-rtl-button-active.png new file mode 100644 index 0000000..151eca9 Binary files /dev/null and b/gtk-2.0/assets/combo-entry-rtl-button-active.png differ diff --git a/gtk-2.0/assets/combo-entry-rtl-button-hover.png b/gtk-2.0/assets/combo-entry-rtl-button-hover.png new file mode 100644 index 0000000..b0a2475 Binary files /dev/null and b/gtk-2.0/assets/combo-entry-rtl-button-hover.png differ diff --git a/gtk-2.0/assets/combo-entry-rtl-button-insensitive.png b/gtk-2.0/assets/combo-entry-rtl-button-insensitive.png new file mode 100644 index 0000000..4f85a8a Binary files /dev/null and b/gtk-2.0/assets/combo-entry-rtl-button-insensitive.png differ diff --git a/gtk-2.0/assets/combo-entry-rtl-button.png b/gtk-2.0/assets/combo-entry-rtl-button.png new file mode 100644 index 0000000..7d92dff Binary files /dev/null and b/gtk-2.0/assets/combo-entry-rtl-button.png differ diff --git a/gtk-2.0/assets/combo-entry-rtl-entry-active.png b/gtk-2.0/assets/combo-entry-rtl-entry-active.png new file mode 100644 index 0000000..d51974c Binary files /dev/null and b/gtk-2.0/assets/combo-entry-rtl-entry-active.png differ diff --git a/gtk-2.0/assets/combo-entry-rtl-entry-insensitive.png b/gtk-2.0/assets/combo-entry-rtl-entry-insensitive.png new file mode 100644 index 0000000..3122b4e Binary files /dev/null and b/gtk-2.0/assets/combo-entry-rtl-entry-insensitive.png differ diff --git a/gtk-2.0/assets/combo-entry-rtl-entry.png b/gtk-2.0/assets/combo-entry-rtl-entry.png new file mode 100644 index 0000000..29acfd9 Binary files /dev/null and b/gtk-2.0/assets/combo-entry-rtl-entry.png differ diff --git a/gtk-2.0/assets/entry-active.png b/gtk-2.0/assets/entry-active.png new file mode 100644 index 0000000..54ea747 Binary files /dev/null and b/gtk-2.0/assets/entry-active.png differ diff --git a/gtk-2.0/assets/entry-background-insensitive.png b/gtk-2.0/assets/entry-background-insensitive.png new file mode 100644 index 0000000..c99f1f4 Binary files /dev/null and b/gtk-2.0/assets/entry-background-insensitive.png differ diff --git a/gtk-2.0/assets/entry-background.png b/gtk-2.0/assets/entry-background.png new file mode 100644 index 0000000..d7a6d76 Binary files /dev/null and b/gtk-2.0/assets/entry-background.png differ diff --git a/gtk-2.0/assets/entry-insensitive.png b/gtk-2.0/assets/entry-insensitive.png new file mode 100644 index 0000000..e7b0427 Binary files /dev/null and b/gtk-2.0/assets/entry-insensitive.png differ diff --git a/gtk-2.0/assets/entry.png b/gtk-2.0/assets/entry.png new file mode 100644 index 0000000..b953c5c Binary files /dev/null and b/gtk-2.0/assets/entry.png differ diff --git a/gtk-2.0/assets/focus.png b/gtk-2.0/assets/focus.png new file mode 100644 index 0000000..58c83d6 Binary files /dev/null and b/gtk-2.0/assets/focus.png differ diff --git a/gtk-2.0/assets/frame-inline.png b/gtk-2.0/assets/frame-inline.png new file mode 100644 index 0000000..ab3ab71 Binary files /dev/null and b/gtk-2.0/assets/frame-inline.png differ diff --git a/gtk-2.0/assets/frame-notebook.png b/gtk-2.0/assets/frame-notebook.png new file mode 100644 index 0000000..0d513d3 Binary files /dev/null and b/gtk-2.0/assets/frame-notebook.png differ diff --git a/gtk-2.0/assets/frame.png b/gtk-2.0/assets/frame.png new file mode 100644 index 0000000..abaf1be Binary files /dev/null and b/gtk-2.0/assets/frame.png differ diff --git a/gtk-2.0/assets/handle-horz.png b/gtk-2.0/assets/handle-horz.png new file mode 100644 index 0000000..632b103 Binary files /dev/null and b/gtk-2.0/assets/handle-horz.png differ diff --git a/gtk-2.0/assets/handle-vert.png b/gtk-2.0/assets/handle-vert.png new file mode 100644 index 0000000..6e6d4dc Binary files /dev/null and b/gtk-2.0/assets/handle-vert.png differ diff --git a/gtk-2.0/assets/handle.png b/gtk-2.0/assets/handle.png new file mode 100644 index 0000000..a468d51 Binary files /dev/null and b/gtk-2.0/assets/handle.png differ diff --git a/gtk-2.0/assets/line.png b/gtk-2.0/assets/line.png new file mode 100644 index 0000000..e43d3da Binary files /dev/null and b/gtk-2.0/assets/line.png differ diff --git a/gtk-2.0/assets/menu-border.png b/gtk-2.0/assets/menu-border.png new file mode 100644 index 0000000..26e6a6e Binary files /dev/null and b/gtk-2.0/assets/menu-border.png differ diff --git a/gtk-2.0/assets/menu-checkbox-checked-insensitive.png b/gtk-2.0/assets/menu-checkbox-checked-insensitive.png new file mode 100644 index 0000000..cfb1c76 Binary files /dev/null and b/gtk-2.0/assets/menu-checkbox-checked-insensitive.png differ diff --git a/gtk-2.0/assets/menu-checkbox-checked.png b/gtk-2.0/assets/menu-checkbox-checked.png new file mode 100644 index 0000000..5295b48 Binary files /dev/null and b/gtk-2.0/assets/menu-checkbox-checked.png differ diff --git a/gtk-2.0/assets/menu-checkbox-hover.png b/gtk-2.0/assets/menu-checkbox-hover.png new file mode 100644 index 0000000..0e5eb07 Binary files /dev/null and b/gtk-2.0/assets/menu-checkbox-hover.png differ diff --git a/gtk-2.0/assets/menu-checkbox-insensitive.png b/gtk-2.0/assets/menu-checkbox-insensitive.png new file mode 100644 index 0000000..4058e3b Binary files /dev/null and b/gtk-2.0/assets/menu-checkbox-insensitive.png differ diff --git a/gtk-2.0/assets/menu-checkbox-mixed-insensitive.png b/gtk-2.0/assets/menu-checkbox-mixed-insensitive.png new file mode 100644 index 0000000..66b334e Binary files /dev/null and b/gtk-2.0/assets/menu-checkbox-mixed-insensitive.png differ diff --git a/gtk-2.0/assets/menu-checkbox-mixed.png b/gtk-2.0/assets/menu-checkbox-mixed.png new file mode 100644 index 0000000..2294891 Binary files /dev/null and b/gtk-2.0/assets/menu-checkbox-mixed.png differ diff --git a/gtk-2.0/assets/menu-checkbox.png b/gtk-2.0/assets/menu-checkbox.png new file mode 100644 index 0000000..5719e7f Binary files /dev/null and b/gtk-2.0/assets/menu-checkbox.png differ diff --git a/gtk-2.0/assets/menu-pan-down-insensitive.png b/gtk-2.0/assets/menu-pan-down-insensitive.png new file mode 100644 index 0000000..c8317f3 Binary files /dev/null and b/gtk-2.0/assets/menu-pan-down-insensitive.png differ diff --git a/gtk-2.0/assets/menu-pan-down.png b/gtk-2.0/assets/menu-pan-down.png new file mode 100644 index 0000000..a000ef4 Binary files /dev/null and b/gtk-2.0/assets/menu-pan-down.png differ diff --git a/gtk-2.0/assets/menu-pan-left-hover.png b/gtk-2.0/assets/menu-pan-left-hover.png new file mode 100644 index 0000000..0142ff1 Binary files /dev/null and b/gtk-2.0/assets/menu-pan-left-hover.png differ diff --git a/gtk-2.0/assets/menu-pan-left-insensitive.png b/gtk-2.0/assets/menu-pan-left-insensitive.png new file mode 100644 index 0000000..109c0f1 Binary files /dev/null and b/gtk-2.0/assets/menu-pan-left-insensitive.png differ diff --git a/gtk-2.0/assets/menu-pan-left.png b/gtk-2.0/assets/menu-pan-left.png new file mode 100644 index 0000000..b1be025 Binary files /dev/null and b/gtk-2.0/assets/menu-pan-left.png differ diff --git a/gtk-2.0/assets/menu-pan-right-hover.png b/gtk-2.0/assets/menu-pan-right-hover.png new file mode 100644 index 0000000..89ee892 Binary files /dev/null and b/gtk-2.0/assets/menu-pan-right-hover.png differ diff --git a/gtk-2.0/assets/menu-pan-right-insensitive.png b/gtk-2.0/assets/menu-pan-right-insensitive.png new file mode 100644 index 0000000..230a187 Binary files /dev/null and b/gtk-2.0/assets/menu-pan-right-insensitive.png differ diff --git a/gtk-2.0/assets/menu-pan-right.png b/gtk-2.0/assets/menu-pan-right.png new file mode 100644 index 0000000..a4430ed Binary files /dev/null and b/gtk-2.0/assets/menu-pan-right.png differ diff --git a/gtk-2.0/assets/menu-pan-up-insensitive.png b/gtk-2.0/assets/menu-pan-up-insensitive.png new file mode 100644 index 0000000..f5fcb15 Binary files /dev/null and b/gtk-2.0/assets/menu-pan-up-insensitive.png differ diff --git a/gtk-2.0/assets/menu-pan-up.png b/gtk-2.0/assets/menu-pan-up.png new file mode 100644 index 0000000..20f8584 Binary files /dev/null and b/gtk-2.0/assets/menu-pan-up.png differ diff --git a/gtk-2.0/assets/menu-radio-checked-insensitive.png b/gtk-2.0/assets/menu-radio-checked-insensitive.png new file mode 100644 index 0000000..1775c0a Binary files /dev/null and b/gtk-2.0/assets/menu-radio-checked-insensitive.png differ diff --git a/gtk-2.0/assets/menu-radio-checked.png b/gtk-2.0/assets/menu-radio-checked.png new file mode 100644 index 0000000..fa37c48 Binary files /dev/null and b/gtk-2.0/assets/menu-radio-checked.png differ diff --git a/gtk-2.0/assets/menu-radio-hover.png b/gtk-2.0/assets/menu-radio-hover.png new file mode 100644 index 0000000..9f68684 Binary files /dev/null and b/gtk-2.0/assets/menu-radio-hover.png differ diff --git a/gtk-2.0/assets/menu-radio-insensitive.png b/gtk-2.0/assets/menu-radio-insensitive.png new file mode 100644 index 0000000..b09f8d1 Binary files /dev/null and b/gtk-2.0/assets/menu-radio-insensitive.png differ diff --git a/gtk-2.0/assets/menu-radio-mixed-insensitive.png b/gtk-2.0/assets/menu-radio-mixed-insensitive.png new file mode 100644 index 0000000..71f4fb3 Binary files /dev/null and b/gtk-2.0/assets/menu-radio-mixed-insensitive.png differ diff --git a/gtk-2.0/assets/menu-radio-mixed.png b/gtk-2.0/assets/menu-radio-mixed.png new file mode 100644 index 0000000..617f05e Binary files /dev/null and b/gtk-2.0/assets/menu-radio-mixed.png differ diff --git a/gtk-2.0/assets/menu-radio.png b/gtk-2.0/assets/menu-radio.png new file mode 100644 index 0000000..5719e7f Binary files /dev/null and b/gtk-2.0/assets/menu-radio.png differ diff --git a/gtk-2.0/assets/menubar-item-active.png b/gtk-2.0/assets/menubar-item-active.png new file mode 100644 index 0000000..3c34e3c Binary files /dev/null and b/gtk-2.0/assets/menubar-item-active.png differ diff --git a/gtk-2.0/assets/notebook-combo-entry-ltr-entry-active.png b/gtk-2.0/assets/notebook-combo-entry-ltr-entry-active.png new file mode 100644 index 0000000..c814588 Binary files /dev/null and b/gtk-2.0/assets/notebook-combo-entry-ltr-entry-active.png differ diff --git a/gtk-2.0/assets/notebook-combo-entry-ltr-entry-insensitive.png b/gtk-2.0/assets/notebook-combo-entry-ltr-entry-insensitive.png new file mode 100644 index 0000000..ce2abba Binary files /dev/null and b/gtk-2.0/assets/notebook-combo-entry-ltr-entry-insensitive.png differ diff --git a/gtk-2.0/assets/notebook-combo-entry-ltr-entry.png b/gtk-2.0/assets/notebook-combo-entry-ltr-entry.png new file mode 100644 index 0000000..aef97fd Binary files /dev/null and b/gtk-2.0/assets/notebook-combo-entry-ltr-entry.png differ diff --git a/gtk-2.0/assets/notebook-combo-entry-rtl-entry-active.png b/gtk-2.0/assets/notebook-combo-entry-rtl-entry-active.png new file mode 100644 index 0000000..0435800 Binary files /dev/null and b/gtk-2.0/assets/notebook-combo-entry-rtl-entry-active.png differ diff --git a/gtk-2.0/assets/notebook-combo-entry-rtl-entry-insensitive.png b/gtk-2.0/assets/notebook-combo-entry-rtl-entry-insensitive.png new file mode 100644 index 0000000..49d17cf Binary files /dev/null and b/gtk-2.0/assets/notebook-combo-entry-rtl-entry-insensitive.png differ diff --git a/gtk-2.0/assets/notebook-combo-entry-rtl-entry.png b/gtk-2.0/assets/notebook-combo-entry-rtl-entry.png new file mode 100644 index 0000000..90aef29 Binary files /dev/null and b/gtk-2.0/assets/notebook-combo-entry-rtl-entry.png differ diff --git a/gtk-2.0/assets/notebook-entry-active.png b/gtk-2.0/assets/notebook-entry-active.png new file mode 100644 index 0000000..e375d32 Binary files /dev/null and b/gtk-2.0/assets/notebook-entry-active.png differ diff --git a/gtk-2.0/assets/notebook-entry-insensitive.png b/gtk-2.0/assets/notebook-entry-insensitive.png new file mode 100644 index 0000000..f7be625 Binary files /dev/null and b/gtk-2.0/assets/notebook-entry-insensitive.png differ diff --git a/gtk-2.0/assets/notebook-entry.png b/gtk-2.0/assets/notebook-entry.png new file mode 100644 index 0000000..2e3ef30 Binary files /dev/null and b/gtk-2.0/assets/notebook-entry.png differ diff --git a/gtk-2.0/assets/pan-down-insensitive.png b/gtk-2.0/assets/pan-down-insensitive.png new file mode 100644 index 0000000..c8317f3 Binary files /dev/null and b/gtk-2.0/assets/pan-down-insensitive.png differ diff --git a/gtk-2.0/assets/pan-down.png b/gtk-2.0/assets/pan-down.png new file mode 100644 index 0000000..a000ef4 Binary files /dev/null and b/gtk-2.0/assets/pan-down.png differ diff --git a/gtk-2.0/assets/pan-left-insensitive.png b/gtk-2.0/assets/pan-left-insensitive.png new file mode 100644 index 0000000..e933a73 Binary files /dev/null and b/gtk-2.0/assets/pan-left-insensitive.png differ diff --git a/gtk-2.0/assets/pan-left-semi.png b/gtk-2.0/assets/pan-left-semi.png new file mode 100644 index 0000000..f15a014 Binary files /dev/null and b/gtk-2.0/assets/pan-left-semi.png differ diff --git a/gtk-2.0/assets/pan-left.png b/gtk-2.0/assets/pan-left.png new file mode 100644 index 0000000..12ced2f Binary files /dev/null and b/gtk-2.0/assets/pan-left.png differ diff --git a/gtk-2.0/assets/pan-right-insensitive.png b/gtk-2.0/assets/pan-right-insensitive.png new file mode 100644 index 0000000..9f46fdd Binary files /dev/null and b/gtk-2.0/assets/pan-right-insensitive.png differ diff --git a/gtk-2.0/assets/pan-right-semi.png b/gtk-2.0/assets/pan-right-semi.png new file mode 100644 index 0000000..5acd9de Binary files /dev/null and b/gtk-2.0/assets/pan-right-semi.png differ diff --git a/gtk-2.0/assets/pan-right.png b/gtk-2.0/assets/pan-right.png new file mode 100644 index 0000000..33e433d Binary files /dev/null and b/gtk-2.0/assets/pan-right.png differ diff --git a/gtk-2.0/assets/pan-up-insensitive.png b/gtk-2.0/assets/pan-up-insensitive.png new file mode 100644 index 0000000..f5fcb15 Binary files /dev/null and b/gtk-2.0/assets/pan-up-insensitive.png differ diff --git a/gtk-2.0/assets/pan-up.png b/gtk-2.0/assets/pan-up.png new file mode 100644 index 0000000..20f8584 Binary files /dev/null and b/gtk-2.0/assets/pan-up.png differ diff --git a/gtk-2.0/assets/progressbar-horz-trough.png b/gtk-2.0/assets/progressbar-horz-trough.png new file mode 100644 index 0000000..a4405e9 Binary files /dev/null and b/gtk-2.0/assets/progressbar-horz-trough.png differ diff --git a/gtk-2.0/assets/progressbar-horz.png b/gtk-2.0/assets/progressbar-horz.png new file mode 100644 index 0000000..744eda8 Binary files /dev/null and b/gtk-2.0/assets/progressbar-horz.png differ diff --git a/gtk-2.0/assets/progressbar-vert-trough.png b/gtk-2.0/assets/progressbar-vert-trough.png new file mode 100644 index 0000000..cda42d0 Binary files /dev/null and b/gtk-2.0/assets/progressbar-vert-trough.png differ diff --git a/gtk-2.0/assets/progressbar-vert.png b/gtk-2.0/assets/progressbar-vert.png new file mode 100644 index 0000000..24ad54a Binary files /dev/null and b/gtk-2.0/assets/progressbar-vert.png differ diff --git a/gtk-2.0/assets/radio-checked-active.png b/gtk-2.0/assets/radio-checked-active.png new file mode 100644 index 0000000..9bf19f8 Binary files /dev/null and b/gtk-2.0/assets/radio-checked-active.png differ diff --git a/gtk-2.0/assets/radio-checked-insensitive.png b/gtk-2.0/assets/radio-checked-insensitive.png new file mode 100644 index 0000000..032ad89 Binary files /dev/null and b/gtk-2.0/assets/radio-checked-insensitive.png differ diff --git a/gtk-2.0/assets/radio-checked.png b/gtk-2.0/assets/radio-checked.png new file mode 100644 index 0000000..9bf19f8 Binary files /dev/null and b/gtk-2.0/assets/radio-checked.png differ diff --git a/gtk-2.0/assets/radio-mixed-active.png b/gtk-2.0/assets/radio-mixed-active.png new file mode 100644 index 0000000..d30e4ec Binary files /dev/null and b/gtk-2.0/assets/radio-mixed-active.png differ diff --git a/gtk-2.0/assets/radio-mixed-insensitive.png b/gtk-2.0/assets/radio-mixed-insensitive.png new file mode 100644 index 0000000..5d585dd Binary files /dev/null and b/gtk-2.0/assets/radio-mixed-insensitive.png differ diff --git a/gtk-2.0/assets/radio-mixed.png b/gtk-2.0/assets/radio-mixed.png new file mode 100644 index 0000000..d30e4ec Binary files /dev/null and b/gtk-2.0/assets/radio-mixed.png differ diff --git a/gtk-2.0/assets/radio-unchecked-active.png b/gtk-2.0/assets/radio-unchecked-active.png new file mode 100644 index 0000000..98330aa Binary files /dev/null and b/gtk-2.0/assets/radio-unchecked-active.png differ diff --git a/gtk-2.0/assets/radio-unchecked-hover.png b/gtk-2.0/assets/radio-unchecked-hover.png new file mode 100644 index 0000000..908ee2c Binary files /dev/null and b/gtk-2.0/assets/radio-unchecked-hover.png differ diff --git a/gtk-2.0/assets/radio-unchecked-insensitive.png b/gtk-2.0/assets/radio-unchecked-insensitive.png new file mode 100644 index 0000000..ceb3b0b Binary files /dev/null and b/gtk-2.0/assets/radio-unchecked-insensitive.png differ diff --git a/gtk-2.0/assets/radio-unchecked.png b/gtk-2.0/assets/radio-unchecked.png new file mode 100644 index 0000000..98330aa Binary files /dev/null and b/gtk-2.0/assets/radio-unchecked.png differ diff --git a/gtk-2.0/assets/scale-horz-focus.png b/gtk-2.0/assets/scale-horz-focus.png new file mode 100644 index 0000000..b519878 Binary files /dev/null and b/gtk-2.0/assets/scale-horz-focus.png differ diff --git a/gtk-2.0/assets/scale-horz-trough-active.png b/gtk-2.0/assets/scale-horz-trough-active.png new file mode 100644 index 0000000..f28be13 Binary files /dev/null and b/gtk-2.0/assets/scale-horz-trough-active.png differ diff --git a/gtk-2.0/assets/scale-horz-trough.png b/gtk-2.0/assets/scale-horz-trough.png new file mode 100644 index 0000000..5f939f4 Binary files /dev/null and b/gtk-2.0/assets/scale-horz-trough.png differ diff --git a/gtk-2.0/assets/scale-slider-active.png b/gtk-2.0/assets/scale-slider-active.png new file mode 100644 index 0000000..17eb6bf Binary files /dev/null and b/gtk-2.0/assets/scale-slider-active.png differ diff --git a/gtk-2.0/assets/scale-slider-hover.png b/gtk-2.0/assets/scale-slider-hover.png new file mode 100644 index 0000000..8bb36a3 Binary files /dev/null and b/gtk-2.0/assets/scale-slider-hover.png differ diff --git a/gtk-2.0/assets/scale-slider-insensitive.png b/gtk-2.0/assets/scale-slider-insensitive.png new file mode 100644 index 0000000..3b935df Binary files /dev/null and b/gtk-2.0/assets/scale-slider-insensitive.png differ diff --git a/gtk-2.0/assets/scale-slider.png b/gtk-2.0/assets/scale-slider.png new file mode 100644 index 0000000..b7ed848 Binary files /dev/null and b/gtk-2.0/assets/scale-slider.png differ diff --git a/gtk-2.0/assets/scale-vert-trough-active.png b/gtk-2.0/assets/scale-vert-trough-active.png new file mode 100644 index 0000000..b208dc2 Binary files /dev/null and b/gtk-2.0/assets/scale-vert-trough-active.png differ diff --git a/gtk-2.0/assets/scale-vert-trough.png b/gtk-2.0/assets/scale-vert-trough.png new file mode 100644 index 0000000..2bb45af Binary files /dev/null and b/gtk-2.0/assets/scale-vert-trough.png differ diff --git a/gtk-2.0/assets/scrollbar-arrow-down.png b/gtk-2.0/assets/scrollbar-arrow-down.png new file mode 100755 index 0000000..0219b31 Binary files /dev/null and b/gtk-2.0/assets/scrollbar-arrow-down.png differ diff --git a/gtk-2.0/assets/scrollbar-arrow-left.png b/gtk-2.0/assets/scrollbar-arrow-left.png new file mode 100755 index 0000000..d075b0a Binary files /dev/null and b/gtk-2.0/assets/scrollbar-arrow-left.png differ diff --git a/gtk-2.0/assets/scrollbar-arrow-right.png b/gtk-2.0/assets/scrollbar-arrow-right.png new file mode 100755 index 0000000..e424846 Binary files /dev/null and b/gtk-2.0/assets/scrollbar-arrow-right.png differ diff --git a/gtk-2.0/assets/scrollbar-arrow-up.png b/gtk-2.0/assets/scrollbar-arrow-up.png new file mode 100755 index 0000000..4122df1 Binary files /dev/null and b/gtk-2.0/assets/scrollbar-arrow-up.png differ diff --git a/gtk-2.0/assets/scrollbar-horz-slider-active.png b/gtk-2.0/assets/scrollbar-horz-slider-active.png new file mode 100644 index 0000000..9819b39 Binary files /dev/null and b/gtk-2.0/assets/scrollbar-horz-slider-active.png differ diff --git a/gtk-2.0/assets/scrollbar-horz-slider-hover.png b/gtk-2.0/assets/scrollbar-horz-slider-hover.png new file mode 100644 index 0000000..5a5f363 Binary files /dev/null and b/gtk-2.0/assets/scrollbar-horz-slider-hover.png differ diff --git a/gtk-2.0/assets/scrollbar-horz-slider.png b/gtk-2.0/assets/scrollbar-horz-slider.png new file mode 100644 index 0000000..7b5d1c8 Binary files /dev/null and b/gtk-2.0/assets/scrollbar-horz-slider.png differ diff --git a/gtk-2.0/assets/scrollbar-horz-trough.png b/gtk-2.0/assets/scrollbar-horz-trough.png new file mode 100644 index 0000000..d3796cd Binary files /dev/null and b/gtk-2.0/assets/scrollbar-horz-trough.png differ diff --git a/gtk-2.0/assets/scrollbar-vert-slider-active-rtl.png b/gtk-2.0/assets/scrollbar-vert-slider-active-rtl.png new file mode 100644 index 0000000..ec21d14 Binary files /dev/null and b/gtk-2.0/assets/scrollbar-vert-slider-active-rtl.png differ diff --git a/gtk-2.0/assets/scrollbar-vert-slider-active.png b/gtk-2.0/assets/scrollbar-vert-slider-active.png new file mode 100644 index 0000000..99e1b47 Binary files /dev/null and b/gtk-2.0/assets/scrollbar-vert-slider-active.png differ diff --git a/gtk-2.0/assets/scrollbar-vert-slider-hover-rtl.png b/gtk-2.0/assets/scrollbar-vert-slider-hover-rtl.png new file mode 100644 index 0000000..6bf6468 Binary files /dev/null and b/gtk-2.0/assets/scrollbar-vert-slider-hover-rtl.png differ diff --git a/gtk-2.0/assets/scrollbar-vert-slider-hover.png b/gtk-2.0/assets/scrollbar-vert-slider-hover.png new file mode 100644 index 0000000..5220f21 Binary files /dev/null and b/gtk-2.0/assets/scrollbar-vert-slider-hover.png differ diff --git a/gtk-2.0/assets/scrollbar-vert-slider-rtl.png b/gtk-2.0/assets/scrollbar-vert-slider-rtl.png new file mode 100644 index 0000000..1b9d350 Binary files /dev/null and b/gtk-2.0/assets/scrollbar-vert-slider-rtl.png differ diff --git a/gtk-2.0/assets/scrollbar-vert-slider.png b/gtk-2.0/assets/scrollbar-vert-slider.png new file mode 100644 index 0000000..395673c Binary files /dev/null and b/gtk-2.0/assets/scrollbar-vert-slider.png differ diff --git a/gtk-2.0/assets/scrollbar-vert-trough-rtl.png b/gtk-2.0/assets/scrollbar-vert-trough-rtl.png new file mode 100644 index 0000000..87e0ba8 Binary files /dev/null and b/gtk-2.0/assets/scrollbar-vert-trough-rtl.png differ diff --git a/gtk-2.0/assets/scrollbar-vert-trough.png b/gtk-2.0/assets/scrollbar-vert-trough.png new file mode 100644 index 0000000..438cf54 Binary files /dev/null and b/gtk-2.0/assets/scrollbar-vert-trough.png differ diff --git a/gtk-2.0/assets/spin-down-insensitive.png b/gtk-2.0/assets/spin-down-insensitive.png new file mode 100644 index 0000000..98806ab Binary files /dev/null and b/gtk-2.0/assets/spin-down-insensitive.png differ diff --git a/gtk-2.0/assets/spin-down.png b/gtk-2.0/assets/spin-down.png new file mode 100644 index 0000000..2872593 Binary files /dev/null and b/gtk-2.0/assets/spin-down.png differ diff --git a/gtk-2.0/assets/spin-ltr-down-active.png b/gtk-2.0/assets/spin-ltr-down-active.png new file mode 100644 index 0000000..04e73c6 Binary files /dev/null and b/gtk-2.0/assets/spin-ltr-down-active.png differ diff --git a/gtk-2.0/assets/spin-ltr-down-hover.png b/gtk-2.0/assets/spin-ltr-down-hover.png new file mode 100644 index 0000000..6d3adb9 Binary files /dev/null and b/gtk-2.0/assets/spin-ltr-down-hover.png differ diff --git a/gtk-2.0/assets/spin-ltr-down-insensitive.png b/gtk-2.0/assets/spin-ltr-down-insensitive.png new file mode 100644 index 0000000..0972e78 Binary files /dev/null and b/gtk-2.0/assets/spin-ltr-down-insensitive.png differ diff --git a/gtk-2.0/assets/spin-ltr-down.png b/gtk-2.0/assets/spin-ltr-down.png new file mode 100644 index 0000000..0301fbe Binary files /dev/null and b/gtk-2.0/assets/spin-ltr-down.png differ diff --git a/gtk-2.0/assets/spin-ltr-up-active.png b/gtk-2.0/assets/spin-ltr-up-active.png new file mode 100644 index 0000000..b91c3ea Binary files /dev/null and b/gtk-2.0/assets/spin-ltr-up-active.png differ diff --git a/gtk-2.0/assets/spin-ltr-up-hover.png b/gtk-2.0/assets/spin-ltr-up-hover.png new file mode 100644 index 0000000..e0b84f1 Binary files /dev/null and b/gtk-2.0/assets/spin-ltr-up-hover.png differ diff --git a/gtk-2.0/assets/spin-ltr-up-insensitive.png b/gtk-2.0/assets/spin-ltr-up-insensitive.png new file mode 100644 index 0000000..1fb4f94 Binary files /dev/null and b/gtk-2.0/assets/spin-ltr-up-insensitive.png differ diff --git a/gtk-2.0/assets/spin-ltr-up.png b/gtk-2.0/assets/spin-ltr-up.png new file mode 100644 index 0000000..9fddb11 Binary files /dev/null and b/gtk-2.0/assets/spin-ltr-up.png differ diff --git a/gtk-2.0/assets/spin-rtl-down-active.png b/gtk-2.0/assets/spin-rtl-down-active.png new file mode 100644 index 0000000..311915b Binary files /dev/null and b/gtk-2.0/assets/spin-rtl-down-active.png differ diff --git a/gtk-2.0/assets/spin-rtl-down-hover.png b/gtk-2.0/assets/spin-rtl-down-hover.png new file mode 100644 index 0000000..f177198 Binary files /dev/null and b/gtk-2.0/assets/spin-rtl-down-hover.png differ diff --git a/gtk-2.0/assets/spin-rtl-down-insensitive.png b/gtk-2.0/assets/spin-rtl-down-insensitive.png new file mode 100644 index 0000000..7cfb7c3 Binary files /dev/null and b/gtk-2.0/assets/spin-rtl-down-insensitive.png differ diff --git a/gtk-2.0/assets/spin-rtl-down.png b/gtk-2.0/assets/spin-rtl-down.png new file mode 100644 index 0000000..37da91a Binary files /dev/null and b/gtk-2.0/assets/spin-rtl-down.png differ diff --git a/gtk-2.0/assets/spin-rtl-up-active.png b/gtk-2.0/assets/spin-rtl-up-active.png new file mode 100644 index 0000000..2121d36 Binary files /dev/null and b/gtk-2.0/assets/spin-rtl-up-active.png differ diff --git a/gtk-2.0/assets/spin-rtl-up-hover.png b/gtk-2.0/assets/spin-rtl-up-hover.png new file mode 100644 index 0000000..0e091fc Binary files /dev/null and b/gtk-2.0/assets/spin-rtl-up-hover.png differ diff --git a/gtk-2.0/assets/spin-rtl-up-insensitive.png b/gtk-2.0/assets/spin-rtl-up-insensitive.png new file mode 100644 index 0000000..51d5c78 Binary files /dev/null and b/gtk-2.0/assets/spin-rtl-up-insensitive.png differ diff --git a/gtk-2.0/assets/spin-rtl-up.png b/gtk-2.0/assets/spin-rtl-up.png new file mode 100644 index 0000000..76dd1f2 Binary files /dev/null and b/gtk-2.0/assets/spin-rtl-up.png differ diff --git a/gtk-2.0/assets/spin-up-insensitive.png b/gtk-2.0/assets/spin-up-insensitive.png new file mode 100644 index 0000000..8e83a9c Binary files /dev/null and b/gtk-2.0/assets/spin-up-insensitive.png differ diff --git a/gtk-2.0/assets/spin-up.png b/gtk-2.0/assets/spin-up.png new file mode 100644 index 0000000..b7b8bd1 Binary files /dev/null and b/gtk-2.0/assets/spin-up.png differ diff --git a/gtk-2.0/assets/tab-down-active.png b/gtk-2.0/assets/tab-down-active.png new file mode 100644 index 0000000..27e2ad1 Binary files /dev/null and b/gtk-2.0/assets/tab-down-active.png differ diff --git a/gtk-2.0/assets/tab-down.png b/gtk-2.0/assets/tab-down.png new file mode 100644 index 0000000..2f29b98 Binary files /dev/null and b/gtk-2.0/assets/tab-down.png differ diff --git a/gtk-2.0/assets/tab-horz-gap.png b/gtk-2.0/assets/tab-horz-gap.png new file mode 100644 index 0000000..053b391 Binary files /dev/null and b/gtk-2.0/assets/tab-horz-gap.png differ diff --git a/gtk-2.0/assets/tab-left-active.png b/gtk-2.0/assets/tab-left-active.png new file mode 100644 index 0000000..8f2c67e Binary files /dev/null and b/gtk-2.0/assets/tab-left-active.png differ diff --git a/gtk-2.0/assets/tab-left.png b/gtk-2.0/assets/tab-left.png new file mode 100644 index 0000000..27e04aa Binary files /dev/null and b/gtk-2.0/assets/tab-left.png differ diff --git a/gtk-2.0/assets/tab-right-active.png b/gtk-2.0/assets/tab-right-active.png new file mode 100644 index 0000000..f5eadb8 Binary files /dev/null and b/gtk-2.0/assets/tab-right-active.png differ diff --git a/gtk-2.0/assets/tab-right.png b/gtk-2.0/assets/tab-right.png new file mode 100644 index 0000000..27e04aa Binary files /dev/null and b/gtk-2.0/assets/tab-right.png differ diff --git a/gtk-2.0/assets/tab-up-active.png b/gtk-2.0/assets/tab-up-active.png new file mode 100644 index 0000000..946d38f Binary files /dev/null and b/gtk-2.0/assets/tab-up-active.png differ diff --git a/gtk-2.0/assets/tab-up.png b/gtk-2.0/assets/tab-up.png new file mode 100644 index 0000000..2f29b98 Binary files /dev/null and b/gtk-2.0/assets/tab-up.png differ diff --git a/gtk-2.0/assets/tab-vert-gap.png b/gtk-2.0/assets/tab-vert-gap.png new file mode 100644 index 0000000..2513e98 Binary files /dev/null and b/gtk-2.0/assets/tab-vert-gap.png differ diff --git a/gtk-2.0/assets/treeview-header-button.png b/gtk-2.0/assets/treeview-header-button.png new file mode 100644 index 0000000..5e1afb9 Binary files /dev/null and b/gtk-2.0/assets/treeview-header-button.png differ diff --git a/gtk-2.0/assets/treeview-pan-down-active.png b/gtk-2.0/assets/treeview-pan-down-active.png new file mode 100644 index 0000000..a000ef4 Binary files /dev/null and b/gtk-2.0/assets/treeview-pan-down-active.png differ diff --git a/gtk-2.0/assets/treeview-pan-down-hover.png b/gtk-2.0/assets/treeview-pan-down-hover.png new file mode 100644 index 0000000..834498f Binary files /dev/null and b/gtk-2.0/assets/treeview-pan-down-hover.png differ diff --git a/gtk-2.0/assets/treeview-pan-down.png b/gtk-2.0/assets/treeview-pan-down.png new file mode 100644 index 0000000..f30d0ee Binary files /dev/null and b/gtk-2.0/assets/treeview-pan-down.png differ diff --git a/gtk-2.0/assets/treeview-pan-up-active.png b/gtk-2.0/assets/treeview-pan-up-active.png new file mode 100644 index 0000000..20f8584 Binary files /dev/null and b/gtk-2.0/assets/treeview-pan-up-active.png differ diff --git a/gtk-2.0/assets/treeview-pan-up-hover.png b/gtk-2.0/assets/treeview-pan-up-hover.png new file mode 100644 index 0000000..2ca39d6 Binary files /dev/null and b/gtk-2.0/assets/treeview-pan-up-hover.png differ diff --git a/gtk-2.0/assets/treeview-pan-up.png b/gtk-2.0/assets/treeview-pan-up.png new file mode 100644 index 0000000..a4457cc Binary files /dev/null and b/gtk-2.0/assets/treeview-pan-up.png differ diff --git a/gtk-2.0/assets/treeview-separator-ltr.png b/gtk-2.0/assets/treeview-separator-ltr.png new file mode 100644 index 0000000..fb67848 Binary files /dev/null and b/gtk-2.0/assets/treeview-separator-ltr.png differ diff --git a/gtk-2.0/assets/treeview-separator-rtl.png b/gtk-2.0/assets/treeview-separator-rtl.png new file mode 100644 index 0000000..e223350 Binary files /dev/null and b/gtk-2.0/assets/treeview-separator-rtl.png differ diff --git a/gtk-2.0/gtkrc b/gtk-2.0/gtkrc new file mode 100755 index 0000000..b38ce07 --- /dev/null +++ b/gtk-2.0/gtkrc @@ -0,0 +1,50 @@ +# Based on Bridge by ScionicSpectre +# vim:set ts=2 sw=2 sts=2 ai et: +# +# This is the GTK+ 2 version of Adwaita. It's whole purpose is to look as the +# GTK+ 3 version as much as possible until GTK+ 2 dies completely. +# +# Note: comments for explaining styles are on the bottom of each file beside the +# widget matches. + +# Declare the colours used throughout the theme. +# There shouldn't be any fiddling with them in the theme files themselves in +# order to not mess up the dark theme. + +# Text/base +gtk-color-scheme = "text_color:#5D5D5D\nbase_color:#FFFFFF" +# Foreground/background +gtk-color-scheme = "fg_color:#3D3D3D\nbg_color:#F5F6F7" +# Selected foreground/background +gtk-color-scheme = "selected_fg_color:#ffffff\nselected_bg_color:#e95420" +# Insensitive foreground/background +gtk-color-scheme = "insensitive_fg_color:#8b8e8f\ninsensitive_bg_color:#f1f1f1" +# Menus +gtk-color-scheme = "menu_color:#fafafa\nmenubar_bg:#f5f6f7" +gtk-color-scheme = "menubar_fg:#3d3d3d\nmenubar_insensitive_fg:#3d3d3d" +# Links +gtk-color-scheme = "link_color:#19B6EE\nvisited_link_color:#0b7196" +# Treeview headers +gtk-color-scheme = "column_header_color:#979a9b\nhover_column_header_color:#636769" +# Window decoration +gtk-color-scheme = "menu_hover_color:#e2e2e2\nwindow_color:#f4f4f4" +# Tooltips +gtk-color-scheme = "tooltip_fg_color:#ffffff\ntooltip_bg_color:#343434" + +# Set GTK settings +gtk-auto-mnemonics = 1 +gtk-primary-button-warps-slider = 1 +gtk-icon-sizes="gtk-menu=16,16: +gtk-button=16,16: +gtk-small-toolbar=16,16: + +gtk-dnd=16,16: +gtk-dialog=16,16" +gtk-toolbar-style = GTK_TOOLBAR_ICONS +gtk-menu-images = 0 +gtk-menu-popup-delay = 0 + +# And hand over the control to the theme files +include "main.rc" +include "apps.rc" +include "hacks.rc" diff --git a/gtk-2.0/hacks.rc b/gtk-2.0/hacks.rc new file mode 100755 index 0000000..1bdbee9 --- /dev/null +++ b/gtk-2.0/hacks.rc @@ -0,0 +1,36 @@ +# vim:set ft=gtkrc ts=2 sw=2 sts=2 ai et: +# +# This file contains horrible hacks to make this theme work with some programs +# This is mostly due to the limitations of gtk2 but sometimes its the fault of +# the programs themselves. Not going to point fingers. +# +# Either way, it's a WONTFIX for both, hence this horrible file. + +style "toplevel_hack" { + engine "adwaita" {} +} + +style "chrome_entry" { + base[NORMAL] = @base_color + base[INSENSITIVE] = @base_color +} + +style "vim_notebook" { + bg[NORMAL] = @base_color + bg[ACTIVE] = @insensitive_bg_color +} + +# Vim puts an eventbox between the tab and the label and colours it, +# we need to handle that +widget "vim-main-window*GtkNotebook.GtkEventBox" style "vim_notebook" + +# (he)xchat input box +class "SexySpellEntry" style:highest "normal_entry" + +# Chromium uses base as the fill colour of its own entries +# This would be fine but Gtk+ uses it to fill the surrounding space, so its set to bg +# That results in Chromium using it for the fill, so we need to handle that +widget_class "*Chrom*" style "chrome_entry" + +# Hack to be able to match widgets in LibreOffice +class "GtkWindow" style "toplevel_hack" diff --git a/gtk-2.0/main.rc b/gtk-2.0/main.rc new file mode 100755 index 0000000..54cf7f1 --- /dev/null +++ b/gtk-2.0/main.rc @@ -0,0 +1,2615 @@ +# vim:set ft=gtkrc ts=2 sw=2 sts=2 ai et: +# +# This is the main theme file, handling all the default widgets and theme +# properties. Since GTK+ 2 is old, we need to overcome some of its limitations, +# which is also mostly done in this file. Sadly not all of them can be overcome +# so there will always be a visible difference between the GTK+ 2 and 3 theme. + +style "default" { + + xthickness = 1 + ythickness = 1 + + #################### + # Style Properties # + #################### + + GtkWidget::focus-line-width = 1 + GtkWidget::focus-line-pattern = "\2\1" + + GtkToolbar::internal-padding = 4 + GtkToolButton::icon-spacing = 4 + + GtkWidget::tooltip-radius = 3 + GtkWidget::tooltip-alpha = 235 + GtkWidget::new-tooltip-style = 1 #for compatibility + + GtkWidget::link-color = @link_color + GtkWidget::visited-link-color = @visited_link_color + GnomeHRef::link_color = @link_color + GtkHTML::link-color = @link_color + GtkHTML::vlink-color = @visited_link_color + GtkIMHtml::hyperlink-color = @link_color + GtkIMHtml::hyperlink-visited-color = @visited_link_color + + GtkSeparatorMenuItem::horizontal-padding = 0 + GtkSeparatorMenuItem::wide-separators = 1 + GtkSeparatorMenuItem::separator-height = 1 + + GtkButton::child-displacement-y = 0 + + GtkButton::default-border = {0, 0, 0, 0} + GtkButton::default-outside-border = {0, 0, 0, 0} + GtkButton::inner-border = {4, 4, 4, 4} + + GtkEntry::state-hint = 1 + GtkEntry::inner-border = {7, 7, 4, 5} + + GtkPaned::handle-size = 8 + GtkHPaned::handle-size = 8 + GtkVPaned::handle-size = 8 + + GtkScrollbar::trough-border = 0 + GtkRange::trough-border = 0 + GtkRange::slider-width = 10 + GtkRange::stepper-size = 0 + GtkRange::activate-slider = 1 + + GtkScrollbar::activate-slider = 1 + GtkScrollbar::stepper-size = 0 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + GtkScrollbar::min-slider-length = 48 # 42 + 2*3 (margins) + GtkScrolledWindow::scrollbar-spacing = 0 + GtkScrolledWindow::scrollbars-within-bevel = 1 + + GtkScale::slider_length = 26 + GtkScale::slider_width = 26 + GtkScale::trough-side-details = 1 + + GtkProgressBar::min-horizontal-bar-height = 6 + GtkProgressBar::min-vertical-bar-width = 6 + # Making this bigger than the min[height,width]-2*[y,x]spacing makes the + # whole progressbar thicker, so by setting it to the exact above value + # we get the maximum spacing between the text and the edges without + # doing so. + GtkProgressBar::xspacing = 4 + GtkProgressBar::yspacing = 4 + + GtkStatusbar::shadow_type = GTK_SHADOW_NONE + GtkSpinButton::shadow_type = GTK_SHADOW_NONE + GtkMenuBar::shadow-type = GTK_SHADOW_NONE + GtkToolbar::shadow-type = GTK_SHADOW_NONE + # TODO: find out what this comment means: + # ( every window is misaligned for the sake of menus ): + GtkMenuBar::internal-padding = 0 + GtkMenu::horizontal-padding = 0 + GtkMenu::vertical-padding = 2 + GtkMenu::double-arrows = 0 + GtkMenuItem::arrow-scaling = 1 + GtkMenuItem::toggle-spacing = 10 + + GtkCheckButton::indicator_spacing = 3 + GtkOptionMenu::indicator_spacing = {13, 13, 5, 8} + + GtkTreeView::expander-size = 16 + GtkTreeView::vertical-separator = 0 + GtkTreeView::horizontal-separator = 4 + GtkTreeView::allow-rules = 0 + # Set this because some apps read it + GtkTreeView::odd-row-color = @base_color + GtkTreeView::even-row-color = @base_color + + GtkExpander::expander-size = 16 + + GtkNotebook::tab-overlap = 4 + + ########## + # Colors # + ########## + + bg[NORMAL] = @bg_color + bg[PRELIGHT] = @bg_color + bg[SELECTED] = @selected_bg_color + bg[INSENSITIVE] = @insensitive_bg_color + bg[ACTIVE] = @bg_color + + fg[NORMAL] = @fg_color + fg[PRELIGHT] = @fg_color + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = @insensitive_fg_color + fg[ACTIVE] = @fg_color + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[SELECTED] = @selected_fg_color + text[INSENSITIVE] = @insensitive_fg_color + text[ACTIVE] = @selected_fg_color + + base[NORMAL] = @base_color + base[PRELIGHT] = shade (0.95, @bg_color) + base[SELECTED] = @selected_bg_color + base[INSENSITIVE] = @insensitive_bg_color + base[ACTIVE] = @selected_bg_color + + # For succinctness, all reasonable pixmap options remain here + + # Draw frame around menu in a non-compositied environment + # This needs to go before pixmap because we need to override some stuff + engine "adwaita" {} + + engine "pixmap" { + + ################# + # Check Buttons # + ################# + + image { + function = CHECK + state = NORMAL + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = PRELIGHT + shadow = OUT + overlay_file = "assets/checkbox-unchecked-hover.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = ACTIVE + shadow = OUT + overlay_file = "assets/checkbox-unchecked-active.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = SELECTED + shadow = OUT + overlay_file = "assets/checkbox-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = NORMAL + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = PRELIGHT + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = ACTIVE + shadow = IN + overlay_file = "assets/checkbox-checked-active.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = SELECTED + shadow = IN + overlay_file = "assets/checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = NORMAL + shadow = ETCHED_IN + overlay_file = "assets/checkbox-mixed.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = PRELIGHT + shadow = ETCHED_IN + overlay_file = "assets/checkbox-mixed.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = ACTIVE + shadow = ETCHED_IN + overlay_file = "assets/checkbox-mixed-active.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = SELECTED + shadow = ETCHED_IN + overlay_file = "assets/checkbox-mixed.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = INSENSITIVE + shadow = ETCHED_IN + overlay_file = "assets/checkbox-mixed-insensitive.png" + overlay_stretch = FALSE + } + + ################# + # Radio Buttons # + ################# + + image { + function = OPTION + state = NORMAL + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "assets/radio-unchecked-hover.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/radio-unchecked-active.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = OUT + overlay_file = "assets/radio-unchecked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-radio-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-radio-checked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = ETCHED_IN + overlay_file = "assets/radio-mixed.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = ETCHED_IN + overlay_file = "assets/radio-mixed.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = ETCHED_IN + overlay_file = "assets/radio-mixed-active.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = SELECTED + shadow = ETCHED_IN + overlay_file = "assets/radio-mixed.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = ETCHED_IN + overlay_file = "assets/radio-mixed-insensitive.png" + overlay_stretch = FALSE + } + + ########## + # Arrows # + ########## + + # Overrides + + # Disable arrows in spinbuttons + image { + function = ARROW + detail = "spinbutton" + } + + # QGtkStyle (used for Qt apps) *always* assumes scrollbars have + # arrows, so configure these here. Gtk2 apps will atually ignore + # this. + + image { + function = ARROW + overlay_file = "assets/scrollbar-arrow-up.png" + detail = "vscrollbar" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + overlay_file = "assets/scrollbar-arrow-down.png" + detail = "vscrollbar" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + overlay_file = "assets/scrollbar-arrow-left.png" + detail = "hscrollbar" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + overlay_file = "assets/scrollbar-arrow-right.png" + detail = "hscrollbar" + overlay_border = { 0, 0, 0, 0 } + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = BOX + detail = "hscrollbar" + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "vscrollbar" + orientation = VERTICAL + } + + # Menu arrows + + image { + function = ARROW + state = NORMAL + detail = "menuitem" + overlay_file = "assets/menu-pan-left.png" + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = PRELIGHT + detail = "menuitem" + overlay_file = "assets/menu-pan-left.png" + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = INSENSITIVE + detail = "menuitem" + overlay_file = "assets/menu-pan-left-insensitive.png" + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = NORMAL + detail = "menuitem" + overlay_file = "assets/menu-pan-right.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + detail = "menuitem" + overlay_file = "assets/menu-pan-right.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = INSENSITIVE + detail = "menuitem" + overlay_file = "assets/menu-pan-right-insensitive.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = INSENSITIVE + detail = "menu_scroll_arrow_up" + overlay_file = "assets/menu-pan-up-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = ARROW + detail = "menu_scroll_arrow_up" + overlay_file = "assets/menu-pan-up.png" + overlay_stretch = FALSE + } + + image { + function = ARROW + state = INSENSITIVE + detail = "menu_scroll_arrow_down" + overlay_file = "assets/menu-pan-down-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = ARROW + detail = "menu_scroll_arrow_down" + overlay_file = "assets/menu-pan-down.png" + overlay_stretch = FALSE + } + + # Regular arrows + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/pan-up.png" + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/pan-up.png" + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/pan-up.png" + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/pan-up-insensitive.png" + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/pan-down-insensitive.png" + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/pan-left.png" + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/pan-left.png" + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/pan-left.png" + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/pan-left-insensitive.png" + overlay_stretch = FALSE + arrow_direction = LEFT + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/pan-right.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/pan-right.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/pan-right.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + image { + function = ARROW + state = INSENSITIVE + overlay_file = "assets/pan-right-insensitive.png" + overlay_stretch = FALSE + arrow_direction = RIGHT + } + + ###################### + # Option Menu Arrows # + ###################### + + image { + function = TAB + state = NORMAL + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + } + + image { + function = TAB + state = PRELIGHT + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + } + + image { + function = TAB + state = ACTIVE + overlay_file = "assets/pan-down.png" + overlay_stretch = FALSE + } + + image { + function = TAB + state = INSENSITIVE + overlay_file = "assets/pan-down-insensitive.png" + overlay_stretch = FALSE + } + + ######### + # Lines # + ######### + + image { + function = VLINE + file = "assets/line.png" + border = {1, 0, 0, 0} + } + + image { + function = HLINE + file = "assets/line.png" + border = {0, 0, 1, 0} + } + + ######### + # Focus # + ######### + + image { + function = FOCUS + file = "assets/focus.png" + border = {1, 1, 1, 1} + stretch = TRUE + } + + ########### + # Handles # + ########### + + image { + function = HANDLE + detail = "handlebox" + overlay_file = "assets/handle.png" + overlay_stretch = FALSE + } + + image { + function = HANDLE + file = "assets/handle-horz.png" + border = {0, 0, 4, 4} + orientation = HORIZONTAL + } + + image { + function = HANDLE + file = "assets/handle-vert.png" + border = {4, 4, 0, 0} + orientation = VERTICAL + } + + image { + function = RESIZE_GRIP + } + + ############# + # Expanders # + ############# + + image { + function = EXPANDER + expander_style = EXPANDED + file = "assets/pan-down.png" + } + + # LTR + + image { + function = EXPANDER + expander_style = COLLAPSED + file = "assets/pan-right.png" + direction = LTR + } + + image { + function = EXPANDER + expander_style = SEMI_COLLAPSED + file = "assets/pan-right-semi.png" + direction = LTR + } + + image { + function = EXPANDER + expander_style = SEMI_EXPANDED + file = "assets/pan-right-semi.png" + direction = LTR + } + + # RTL + + image { + function = EXPANDER + expander_style = COLLAPSED + file = "assets/pan-left.png" + direction = RTL + } + + image { + function = EXPANDER + expander_style = SEMI_COLLAPSED + file = "assets/pan-left-semi.png" + direction = RTL + } + + image { + function = EXPANDER + expander_style = SEMI_EXPANDED + file = "assets/pan-left-semi.png" + direction = RTL + } + + ############# + # Notebooks # + ############# + + # Left + + image { + function = EXTENSION + state = NORMAL + file = "assets/tab-left-active.png" + border = {3, 0, 3, 3} + stretch = TRUE + gap_side = RIGHT + } + + image { + function = EXTENSION + file = "assets/tab-left.png" + border = {3, 0, 3, 3} + stretch = TRUE + gap_side = RIGHT + } + + # Right + + image { + function = EXTENSION + state = NORMAL + file = "assets/tab-right-active.png" + border = {0, 3, 3, 3} + stretch = TRUE + gap_side = LEFT + } + + image { + function = EXTENSION + file = "assets/tab-right.png" + border = {0, 3, 3, 3} + stretch = TRUE + gap_side = LEFT + } + + # Up + + image { + function = EXTENSION + state = NORMAL + file = "assets/tab-up-active.png" + border = {3, 3, 3, 0} + stretch = TRUE + gap_side = BOTTOM + } + + image { + function = EXTENSION + file = "assets/tab-up.png" + border = {3, 3, 3, 0} + stretch = TRUE + gap_side = BOTTOM + } + + # Down + + image { + function = EXTENSION + state = NORMAL + file = "assets/tab-down-active.png" + border = {3, 3, 0, 3} + stretch = TRUE + gap_side = TOP + } + + image { + function = EXTENSION + file = "assets/tab-down.png" + border = {3, 3, 0, 3} + stretch = TRUE + gap_side = TOP + } + + # Inner frame + + image { + function = BOX_GAP + detail = "notebook" + file = "assets/frame-notebook.png" + border = {1, 1, 1, 1} + stretch = TRUE + gap_file = "assets/tab-vert-gap.png" + gap_border = {1, 0, 1, 1} + gap_side = LEFT + } + + image { + function = BOX_GAP + detail = "notebook" + file = "assets/frame-notebook.png" + border = {1, 1, 1, 1} + stretch = TRUE + gap_file = "assets/tab-vert-gap.png" + gap_border = {0, 1, 1, 1} + gap_side = RIGHT + } + + image { + function = BOX_GAP + detail = "notebook" + file = "assets/frame-notebook.png" + border = {1, 1, 1, 1} + stretch = TRUE + gap_file = "assets/tab-horz-gap.png" + gap_border = {1, 1, 1, 0} + gap_side = TOP + } + + image { + function = BOX_GAP + detail = "notebook" + file = "assets/frame-notebook.png" + border = {1, 1, 1, 1} + stretch = TRUE + gap_file = "assets/tab-horz-gap.png" + gap_border = {1, 1, 0, 1} + gap_side = BOTTOM + } + + # Standalone frame + image { + function = BOX + detail = "notebook" + file = "assets/frame-notebook.png" + border = {1, 1, 1, 1} + stretch = TRUE + } + + ############## + # Scrollbars # + ############## + + image { + function = BOX + detail = "trough" + file = "assets/scrollbar-horz-trough.png" + border = {0, 0, 1, 0} + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/scrollbar-vert-trough.png" + border = {1, 0, 0, 0} + orientation = VERTICAL + direction = LTR + } + + image { + function = BOX + detail = "trough" + file = "assets/scrollbar-vert-trough-rtl.png" + border = {0, 1, 0, 0} + orientation = VERTICAL + direction = RTL + } + + + # Disable insensitive sliders + + image { + function = SLIDER + state = INSENSITIVE + detail = "slider" + } + + # Horizontal sliders + + image { + function = SLIDER + state = NORMAL + detail = "slider" + file = "assets/scrollbar-horz-slider.png" + border = {6, 6, 7, 6 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = PRELIGHT + detail = "slider" + file = "assets/scrollbar-horz-slider-hover.png" + border = {6, 6, 7, 6 } + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = SLIDER + state = ACTIVE + detail = "slider" + file = "assets/scrollbar-horz-slider-active.png" + border = {6, 6, 7, 6 } + stretch = TRUE + orientation = HORIZONTAL + } + + # Vertical sliders + + image { + function = SLIDER + state = NORMAL + detail = "slider" + file = "assets/scrollbar-vert-slider.png" + border = {7, 6, 6, 6} + stretch = TRUE + orientation = VERTICAL + direction = LTR + } + + image { + function = SLIDER + state = PRELIGHT + detail = "slider" + file = "assets/scrollbar-vert-slider-hover.png" + border = {7, 6, 6, 6} + stretch = TRUE + orientation = VERTICAL + direction = LTR + } + + image { + function = SLIDER + state = ACTIVE + detail = "slider" + file = "assets/scrollbar-vert-slider-active.png" + border = {7, 6, 6, 6} + stretch = TRUE + orientation = VERTICAL + direction = LTR + } + + # RTL + + image { + function = SLIDER + state = NORMAL + detail = "slider" + file = "assets/scrollbar-vert-slider-rtl.png" + border = {6, 7, 6, 6} + stretch = TRUE + orientation = VERTICAL + direction = RTL + } + + image { + function = SLIDER + state = PRELIGHT + detail = "slider" + file = "assets/scrollbar-vert-slider-hover-rtl.png" + border = {6, 7, 6, 6} + stretch = TRUE + orientation = VERTICAL + direction = RTL + } + + image { + function = SLIDER + state = ACTIVE + detail = "slider" + file = "assets/scrollbar-vert-slider-active-rtl.png" + border = {6, 7, 6, 6} + stretch = TRUE + orientation = VERTICAL + direction = RTL + } + + ########## + # Scales # + ########## + + # Troughs, overrided later on. We set them here too because some widgets + # don't specify their orientation. + + image { + function = BOX + detail = "trough-upper" + file = "assets/scale-horz-trough.png" + border = {10, 10, 0, 0} + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/scale-horz-trough-active.png" + border = {10, 10, 0, 0} + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough-upper" + file = "assets/scale-vert-trough.png" + border = {0, 0, 10, 10} + stretch = TRUE + orientation = VERTICAL + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/scale-vert-trough-active.png" + border = {0, 0, 10, 10} + stretch = TRUE + orientation = VERTICAL + } + + # Sliders + + image { + function = SLIDER + state = NORMAL + detail = "hscale" + file = "assets/scale-slider.png" + } + + image { + function = SLIDER + state = PRELIGHT + detail = "hscale" + file = "assets/scale-slider-hover.png" + } + + image { + function = SLIDER + state = ACTIVE + detail = "hscale" + file = "assets/scale-slider-active.png" + } + + image { + function = SLIDER + state = INSENSITIVE + detail = "hscale" + file = "assets/scale-slider-insensitive.png" + } + image { + function = SLIDER + state = NORMAL + detail = "vscale" + file = "assets/scale-slider.png" + } + + image { + function = SLIDER + state = PRELIGHT + detail = "vscale" + file = "assets/scale-slider-hover.png" + } + + image { + function = SLIDER + state = ACTIVE + detail = "vscale" + file = "assets/scale-slider-active.png" + } + + image { + function = SLIDER + state = INSENSITIVE + detail = "vscale" + file = "assets/scale-slider-insensitive.png" + } + + ########### + # Menubar # + ########### + + image { + function = BOX + detail = "menubar" + file = "assets/line.png" + border = {0, 0, 0, 1} + } + + ######### + # Menus # + ######### + + image { + function = BOX + state = PRELIGHT + detail = "menu_scroll_arrow_up" + file = "assets/line.png" + } + + image { + function = BOX + detail = "menu_scroll_arrow_up" + file = "assets/line.png" + border = {0, 0, 0, 1} + } + + image { + function = BOX + state = PRELIGHT + detail = "menu_scroll_arrow_down" + file = "assets/line.png" + } + + image { + function = BOX + detail = "menu_scroll_arrow_down" + file = "assets/line.png" + border = {0, 0, 1, 0} + } + + ########### + # Entries # + ########### + + + image { + function = SHADOW + state = ACTIVE + detail = "entry" + file = "assets/entry-active.png" + border = {4, 4, 4, 4} + stretch = TRUE + } + + image { + function = SHADOW + state = INSENSITIVE + detail = "entry" + file = "assets/entry-insensitive.png" + border = {4, 4, 4, 4} + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + file = "assets/entry.png" + border = {4, 4, 4, 4} + stretch = TRUE + } + + image { + function = FLAT_BOX + state = ACTIVE + detail = "entry_bg" + file = "assets/entry-background.png" + } + + image { + function = FLAT_BOX + state = INSENSITIVE + detail = "entry_bg" + file = "assets/entry-background-insensitive.png" + } + + image { + function = FLAT_BOX + detail = "entry_bg" + file = "assets/entry-background.png" + } + ######### + # Spins # + ######### + + # Spin-Up LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/spin-ltr-up.png" + border = {1, 4, 4, 0} + stretch = TRUE + overlay_file = "assets/spin-up.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/spin-ltr-up-hover.png" + border = {1, 4, 4, 0} + stretch = TRUE + overlay_file = "assets/spin-up.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/spin-ltr-up-active.png" + border = {1, 4, 4, 0} + stretch = TRUE + overlay_file = "assets/spin-up.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/spin-ltr-up-insensitive.png" + border = {1, 4, 4, 0} + stretch = TRUE + overlay_file = "assets/spin-up-insensitive.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Up RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_up" + file = "assets/spin-rtl-up.png" + border = {4, 1, 4, 0} + stretch = TRUE + overlay_file = "assets/spin-up.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_up" + file = "assets/spin-rtl-up-hover.png" + border = {4, 1, 4, 0} + stretch = TRUE + overlay_file = "assets/spin-up.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_up" + file = "assets/spin-rtl-up-hover.png" + border = {4, 1, 4, 0} + stretch = TRUE + overlay_file = "assets/spin-up.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_up" + file = "assets/spin-rtl-up-insensitive.png" + border = {4, 1, 4, 0} + stretch = TRUE + overlay_file = "assets/spin-up-insensitive.png" + overlay_stretch = FALSE + direction = RTL + } + + # Spin-Down LTR + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/spin-ltr-down.png" + border = {1, 4, 1, 4} + stretch = TRUE + overlay_file = "assets/spin-down.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/spin-ltr-down-hover.png" + border = {1, 4, 1, 4} + stretch = TRUE + overlay_file = "assets/spin-down.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/spin-ltr-down-active.png" + border = {1, 4, 1, 4} + stretch = TRUE + overlay_file = "assets/spin-down.png" + overlay_stretch = FALSE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/spin-ltr-down-insensitive.png" + border = {1, 4, 1, 4} + stretch = TRUE + overlay_file = "assets/spin-down-insensitive.png" + overlay_stretch = FALSE + direction = LTR + } + + # Spin-Down RTL + + image { + function = BOX + state = NORMAL + detail = "spinbutton_down" + file = "assets/spin-rtl-down.png" + border = {4, 1, 1, 4} + stretch = TRUE + overlay_file = "assets/spin-down.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "spinbutton_down" + file = "assets/spin-rtl-down-hover.png" + border = {4, 1, 1, 4} + stretch = TRUE + overlay_file = "assets/spin-down.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "spinbutton_down" + file = "assets/spin-rtl-down-active.png" + border = {4, 1, 1, 4} + stretch = TRUE + overlay_file = "assets/spin-down.png" + overlay_stretch = FALSE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "spinbutton_down" + file = "assets/spin-rtl-down-insensitive.png" + border = {4, 1, 1, 4} + stretch = TRUE + overlay_file = "assets/spin-down-insensitive.png" + overlay_stretch = FALSE + direction = RTL + } + + ############## + # Scrollbars # + ############## + + image { + function = BOX + detail = "bar" + file = "assets/progressbar-horz.png" + stretch = TRUE + border = {2, 2, 1, 1} + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "bar" + file = "assets/progressbar-vert.png" + stretch = TRUE + border = {1, 1, 2, 2} + orientation = VERTICAL + } + + ############# + # Treeviews # + ############# + + # Disable active the column highlight + # We need to match specific cells or we break stuff + # Looking at you deadbeef + + image { + function = FLAT_BOX + detail = "cell_even_sorted" + state = NORMAL + } + + image { + function = FLAT_BOX + detail = "cell_odd_sorted" + state = NORMAL + } + + # Disable all the other shadows + # This prevents the Raleigh effect + image { + function = SHADOW + } + + } + +} + +style "menubar" { + + # Needed to fix Firefox's menubar text + bg[NORMAL] = @menubar_bg + bg[SELECTED] = @selected_fg_color + fg[SELECTED] = @link_color +} + +style "menubar_item" { + + xthickness = 3 + ythickness = 4 + + fg[NORMAL] = @menubar_insensitive_fg + fg[PRELIGHT] = @menubar_fg + + engine "pixmap" { + image { + function = BOX + state = PRELIGHT + file = "assets/menubar-item-active.png" + border = {0, 0, 0, 3} + } + } + +} + +style "menu" { + + xthickness = 0 + ythickness = 0 + + bg[NORMAL] = @menu_color + bg[INSENSITIVE] = @menu_color + bg[PRELIGHT] = @menu_color + bg[SELECTED] = @selected_bg_color + +} + +style "menu_item" { + + xthickness = 3 + ythickness = 4 + + bg[PRELIGHT] = @menu_hover_color + # Chromium uses this setting + bg[SELECTED] = @menu_hover_color + + fg[PRELIGHT] = @fg_color + fg[SELECTED] = @fg_color + text[NORMAL] = @fg_color + text[PRELIGHT] = @fg_color + text[ACTIVE] = @fg_color + text[SELECTED] = @fg_color + + # Some widgets use text, we need to handle that + # Don't know what this comment is about but maybe we've nulled it + + # Unfortunately we can't tell regular and menu checks/radios apart + # Without the heirarchy + engine "pixmap" { + + ################# + # Check Buttons # + ################# + + image { + function = CHECK + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-checkbox.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-checkbox.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-checkbox.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-checkbox-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = NORMAL + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-checkbox-checked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = NORMAL + shadow = ETCHED_IN + overlay_file = "assets/menu-checkbox-mixed.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = PRELIGHT + shadow = ETCHED_IN + overlay_file = "assets/menu-checkbox-mixed.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = ACTIVE + shadow = ETCHED_IN + overlay_file = "assets/menu-checkbox-mixed.png" + overlay_stretch = FALSE + } + + image { + function = CHECK + state = INSENSITIVE + shadow = ETCHED_IN + overlay_file = "assets/menu-checkbox-mixed-insensitive.png" + overlay_stretch = FALSE + } + + ################# + # Radio Buttons # + ################# + + image { + function = OPTION + state = NORMAL + shadow = OUT + overlay_file = "assets/menu-radio.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = OUT + overlay_file = "assets/menu-radio.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = OUT + overlay_file = "assets/menu-radio.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = OUT + overlay_file = "assets/menu-radio-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = IN + overlay_file = "assets/menu-radio-checked.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = IN + overlay_file = "assets/menu-radio-checked-insensitive.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = NORMAL + shadow = ETCHED_IN + overlay_file = "assets/menu-radio-mixed.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = PRELIGHT + shadow = ETCHED_IN + overlay_file = "assets/menu-radio-mixed.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = ACTIVE + shadow = ETCHED_IN + overlay_file = "assets/menu-radio-mixed.png" + overlay_stretch = FALSE + } + + image { + function = OPTION + state = INSENSITIVE + shadow = ETCHED_IN + overlay_file = "assets/menu-radio-mixed-insensitive.png" + overlay_stretch = FALSE + } + + + + } + +} + +style "separator_menu_item" { + + xthickness = 0 + ythickness = 0 + + engine "pixmap" { + image { + function = BOX + file = "assets/line.png" + } + } + +} + +style "button" { + + xthickness = 2 + ythickness = 2 + + # For the sake of sanity style buttons this way + engine "pixmap" { + + ########### + # Buttons # + ########### + + image { + function = BOX + state = NORMAL + file = "assets/button.png" + border = {4, 4, 4, 4} + stretch = TRUE + } + + image { + function = BOX + state = PRELIGHT + shadow = OUT + file = "assets/button-hover.png" + border = {4, 4, 4, 4} + stretch = TRUE + } + + # Don't add hover effect on pressed buttons + image { + function = BOX + state = PRELIGHT + shadow = IN + file = "assets/button-active.png" + border = {4, 4, 4, 4} + stretch = TRUE + } + + image { + function = BOX + state = ACTIVE + file = "assets/button-active.png" + border = {4, 4, 4, 4} + stretch = TRUE + } + + image { + function = BOX + state = INSENSITIVE + file = "assets/button-insensitive.png" + border = {4, 4, 4, 4} + stretch = TRUE + } + } +} + +style "link_button" { + + # Disable the button effect, leave just the link + engine "pixmap" { + image { + function = BOX + } + } + +} + +style "entry" { + + # We set this same as the border of the border of the entry + # This way there's no overlap + xthickness = 4 + ythickness = 4 + +} + +style "combobox" { + + xthickness = 6 + ythickness = 4 + + # This affects only the button beside an entry + GtkButton::inner-border = {0, 0, 0, 0} + +} + +style "combobox_cellview" { + text[NORMAL] = @fg_color + text[PRELIGHT] = @fg_color +} + +style "combobox_entry" { + + # Since one side of the button is missing, we need to shift the arrow a little to the right + GtkButton::inner-border = {0, 1, 0, 0} + + engine "pixmap" { + + ############# + # LTR entry # + ############# + + image { + function = SHADOW + state = NORMAL + detail = "entry" + file = "assets/combo-entry-ltr-entry.png" + border = {4, 4, 4, 4} + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + state = ACTIVE + detail = "entry" + file = "assets/combo-entry-ltr-entry-active.png" + border = {4, 4, 4, 4} + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + state = INSENSITIVE + detail = "entry" + file = "assets/combo-entry-ltr-entry-insensitive.png" + border = {4, 4, 4, 4} + stretch = TRUE + direction = LTR + } + + ############# + # RTL entry # + ############# + + image { + function = SHADOW + state = NORMAL + detail = "entry" + file = "assets/combo-entry-rtl-entry.png" + border = {4, 4, 4, 4} + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + state = ACTIVE + detail = "entry" + file = "assets/combo-entry-rtl-entry-active.png" + border = {4, 4, 4, 4} + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + state = INSENSITIVE + detail = "entry" + file = "assets/combo-entry-rtl-entry-insensitive.png" + border = {4, 4, 4, 4} + stretch = TRUE + direction = RTL + } + + ############## + # LTR button # + ############## + + image { + function = BOX + state = NORMAL + detail = "button" + file = "assets/combo-entry-ltr-button.png" + border = {0, 4, 4, 4} + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = PRELIGHT + detail = "button" + file = "assets/combo-entry-ltr-button-hover.png" + border = {0, 4, 4, 4} + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = ACTIVE + detail = "button" + file = "assets/combo-entry-ltr-button-active.png" + border = {0, 4, 4, 4} + stretch = TRUE + direction = LTR + } + + image { + function = BOX + state = INSENSITIVE + detail = "button" + file = "assets/combo-entry-ltr-button-insensitive.png" + border = {0, 4, 4, 4} + stretch = TRUE + direction = LTR + } + + ############## + # RTL button # + ############## + + image { + function = BOX + state = NORMAL + detail = "button" + file = "assets/combo-entry-rtl-button.png" + border = {4, 0, 4, 4} + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = PRELIGHT + detail = "button" + file = "assets/combo-entry-rtl-button-hover.png" + border = {4, 0, 4, 4} + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = ACTIVE + detail = "button" + file = "assets/combo-entry-rtl-button-active.png" + border = {4, 0, 4, 4} + stretch = TRUE + direction = RTL + } + + image { + function = BOX + state = INSENSITIVE + detail = "button" + file = "assets/combo-entry-rtl-button-insensitive.png" + border = {4, 0, 4, 4} + stretch = TRUE + direction = RTL + } + + } + +} + +style "combo_button_padding" { + + # Since one side of the button is missing, we need to shift the arrow a + # little to the right. + # This is the same thing we've done above but the combo, unlike the combobox, + # uses padding the same way as a button. + GtkButton::inner-border = {6, 8, 4, 4} + +} + +style "notebook" { + + xthickness = 5 + ythickness = 2 + +} + +style "notebook_viewport" { + bg[NORMAL] = @base_color +} + +style "notebook_bg" { + bg[NORMAL] = @base_color + bg[PRELIGHT] = @base_color + bg[INSENSITIVE] = @base_color +} + +style "notebook_entry" { + + engine "pixmap" { + + image { + function = SHADOW + state = ACTIVE + detail = "entry" + file = "assets/notebook-entry-active.png" + border = {4, 4, 4, 4} + stretch = TRUE + } + + image { + function = SHADOW + state = INSENSITIVE + detail = "entry" + file = "assets/notebook-entry-insensitive.png" + border = {4, 4, 4, 4} + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + file = "assets/notebook-entry.png" + border = {4, 4, 4, 4} + stretch = TRUE + } + } +} + +style "normal_bg" { + bg[NORMAL] = @bg_color + bg[PRELIGHT] = @bg_color + bg[INSENSITIVE] = @insensitive_bg_color +} + +style "normal_entry" { + + engine "pixmap" { + + image { + function = SHADOW + state = ACTIVE + detail = "entry" + file = "assets/entry-active.png" + border = {4, 4, 4, 4} + stretch = TRUE + } + + image { + function = SHADOW + state = INSENSITIVE + detail = "entry" + file = "assets/entry-insensitive.png" + border = {4, 4, 4, 4} + stretch = TRUE + } + + image { + function = SHADOW + detail = "entry" + file = "assets/entry.png" + border = {4, 4, 4, 4} + stretch = TRUE + } + } +} + +style "notebook_combo" { + + engine "pixmap" { + + ############# + # LTR entry # + ############# + + image { + function = SHADOW + state = NORMAL + detail = "entry" + file = "assets/notebook-combo-entry-ltr-entry.png" + border = {4, 4, 4, 4} + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + state = ACTIVE + detail = "entry" + file = "assets/notebook-combo-entry-ltr-entry-active.png" + border = {4, 4, 4, 4} + stretch = TRUE + direction = LTR + } + + image { + function = SHADOW + state = INSENSITIVE + detail = "entry" + file = "assets/notebook-combo-entry-ltr-entry-insensitive.png" + border = {4, 4, 4, 4} + stretch = TRUE + direction = LTR + } + + ############# + # RTL entry # + ############# + + image { + function = SHADOW + state = NORMAL + detail = "entry" + file = "assets/notebook-combo-entry-rtl-entry.png" + border = {4, 4, 4, 4} + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + state = ACTIVE + detail = "entry" + file = "assets/notebook-combo-entry-rtl-entry-active.png" + border = {4, 4, 4, 4} + stretch = TRUE + direction = RTL + } + + image { + function = SHADOW + state = INSENSITIVE + detail = "entry" + file = "assets/notebook-combo-entry-rtl-entry-insensitive.png" + border = {4, 4, 4, 4} + stretch = TRUE + direction = RTL + } + + } + +} + +style "textview" { + bg[NORMAL] = @base_color +} + +style "scale_horz" { + + engine "pixmap" { + + image { + function = BOX + detail = "trough-upper" + file = "assets/scale-horz-trough.png" + border = {10, 10, 0, 0} + stretch = TRUE + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/scale-horz-trough-active.png" + border = {10, 10, 0, 0} + stretch = TRUE + } + + } + +} + +style "scale_vert" { + + engine "pixmap" { + + image { + function = BOX + detail = "trough-upper" + file = "assets/scale-vert-trough.png" + border = {0, 0, 10, 10} + stretch = TRUE + } + + image { + function = BOX + detail = "trough-lower" + file = "assets/scale-vert-trough-active.png" + border = {0, 0, 10, 10} + stretch = TRUE + } + + } + +} + +style "progressbar" { + + xthickness = 1 + ythickness = 1 + + fg[PRELIGHT] = @selected_fg_color + + engine "pixmap" { + + image { + function = BOX + detail = "trough" + file = "assets/progressbar-horz-trough.png" + border = {3, 3, 2, 2} + stretch = TRUE + orientation = HORIZONTAL + } + + image { + function = BOX + detail = "trough" + file = "assets/progressbar-vert-trough.png" + border = {2, 2, 3, 3} + stretch = TRUE + orientation = VERTICAL + } + + } + +} + +style "treeview_header_button" { + + engine "pixmap" { + image { + function = SHADOW + state = NORMAL + file = "assets/treeview-header-button.png" + border = {4, 4, 4, 4} + stretch = TRUE + } + } + +} + +style "treeview_header_label" { + + xthickness = 1 + ythickness = 0 + + font_name = "Bold" + + GtkButton::inner-border = {5, 5, 0, 1} + + engine "pixmap" { + + image { + function = BOX + file = "assets/treeview-separator-ltr.png" + border = {0, 1, 0, 1} + stretch = TRUE + direction = LTR + } + + image { + function = BOX + file = "assets/treeview-separator-rtl.png" + border = {1, 0, 0, 1} + stretch = TRUE + direction = RTL + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/treeview-pan-up.png" + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/treeview-pan-up-hover.png" + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/treeview-pan-up-active.png" + overlay_stretch = FALSE + arrow_direction = UP + } + + image { + function = ARROW + state = NORMAL + overlay_file = "assets/treeview-pan-down.png" + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = PRELIGHT + overlay_file = "assets/treeview-pan-down-hover.png" + overlay_stretch = FALSE + arrow_direction = DOWN + } + + image { + function = ARROW + state = ACTIVE + overlay_file = "assets/treeview-pan-down-active.png" + overlay_stretch = FALSE + arrow_direction = DOWN + } + + } + +} + +style "scrolled_window" { + + engine "pixmap" { + image { + function = SHADOW + file = "assets/frame.png" + border = {1, 1, 1, 1} + stretch = TRUE + } + } + +} + +style "frame" { + + engine "pixmap" { + + image { + function = SHADOW + shadow = NONE + } + + image { + function = SHADOW + file = "assets/frame.png" + border = {1, 1, 1, 1} + stretch = TRUE + } + + image { + function = SHADOW_GAP + file = "assets/frame.png" + border = {1, 1, 1, 1} + stretch = TRUE + gap_start_file = "assets/border.png" + gap_end_file = "assets/border.png" + } + + } + +} + +style "toolbar_button" { + + xthickness = 2 + ythickness = 2 + + GtkButton::inner-border = {2, 2, 2, 2} + +} + +style "toolbar_separator" { + + GtkWidget::wide-separators = 1 + GtkWidget::separator-width = 1 + GtkWidget::separator-height = 1 + + engine "pixmap" { + image { + function = BOX + file = "assets/line.png" + } + } + +} + +style "inline_toolbar" { + + GtkToolbar::button-relief = GTK_RELIEF_NORMAL + + engine "pixmap" { + image { + function = SHADOW + file = "assets/frame-inline.png" + border = {1, 1, 0, 1} + stretch = TRUE + } + } + +} + +style "tooltip" { + + xthickness = 13 + ythickness = 13 + + bg[NORMAL] = @tooltip_bg_color + fg[NORMAL] = @tooltip_fg_color + bg[SELECTED] = @tooltip_bg_color + +} + +style "disable_separator" { + + xthickness = 0 + ythickness = 0 + + GtkWidget::wide-separators = 1 + +} + +# Default style, containing theme properties and trying to match every widget as +# much as possible, which is not only faster than trying to match every widget +# by its own but also less bug-prune and more consistent. However there is some +# widget specific stuff that needs to be taken care of, which is the point of +# every other style below. +class "GtkWidget" style "default" + + ###################################### + # Override padding, style and colour # + ###################################### + +class "GtkButton" style "button" +class "GtkLinkButton" style "link_button" +class "GtkEntry" style "entry" +class "GtkOldEditable" style "entry" +class "GtkNotebook" style "notebook" +class "GtkHScale" style "scale_horz" +class "GtkVScale" style "scale_vert" +class "GtkProgressBar" style "progressbar" +class "GtkScrolledWindow" style "scrolled_window" +class "GtkFrame" style "frame" +class "GtkSeparatorToolItem" style "toolbar_separator" +class "GtkMenuBar" style "menubar" +class "GtkMenu" style "menu" +class "GtkTextView" style "textview" + +# Menu and menubar items +widget_class "**" style "menu_item" +widget_class "*.*" style "menubar_item" +widget_class "**" style "menubar_item" +widget_class "**" style "separator_menu_item" + +# Treeview buttons +widget_class "***" style "treeview_header_label" +widget_class "**" style "treeview_header_button" + +# Give the file chooser toolbar a border +widget_class "**" style "inline_toolbar" + +# Fix padding on regular comboboxes +widget_class "*." style "combobox" +# And disable separators on them +widget_class "*.*" style "disable_separator" + +# Join together the ComboBoxEntry entry and button +widget_class "**" style "combobox_entry" + +# Join the Combo entry and button +widget_class "**" style "combobox_entry" +# Tweak the padding on the button a little bit because it +# uses it a bit differently +widget_class "*." style "combo_button_padding" + +# Alas we cannot do the same for ComboBoxText because there +# isn't a way to apply the style to only the comboboxes that +# have an entry inside + +# Toolbar buttons have different paddings +widget_class "**" style "toolbar_button" + +# Notebooks are white, act accordingly +widget_class "**" style "notebook_entry" +widget_class "**" style "notebook_bg" +widget_class "**" style "notebook_bg" +widget_class "***" style "notebook_bg" +widget_class "**" style "notebook_bg" +widget_class "*.*" style "notebook_bg" +widget_class "***" style "notebook_combo" +widget_class "***" style "notebook_combo" + +# However, stuff inside eventboxes inside notebooks is grey +# again, react +widget_class "***" style "normal_entry" +widget_class "***" style "normal_bg" +widget_class "***" style "normal_bg" +widget_class "****" style "combobox_entry" +widget_class "****" style "combobox_entry" +widget_class "***." style "combo_button_padding" + +# ComboBoxes tend to draw the button label with text[] +# instead of fg[], we need to fix that +widget_class "**" style "combobox_cellview" + +# GTK tooltips +widget "gtk-tooltip*" style "tooltip" diff --git a/gtk-3.0/assets b/gtk-3.0/assets new file mode 120000 index 0000000..295dc91 --- /dev/null +++ b/gtk-3.0/assets @@ -0,0 +1 @@ +../../Yaru-Orange/gtk-3.0/assets \ No newline at end of file diff --git a/gtk-3.0/gtk-dark.css b/gtk-3.0/gtk-dark.css new file mode 120000 index 0000000..4bc7345 --- /dev/null +++ b/gtk-3.0/gtk-dark.css @@ -0,0 +1 @@ +../../Yaru-Orange/gtk-3.0/gtk-dark.css \ No newline at end of file diff --git a/gtk-3.0/gtk-light.css b/gtk-3.0/gtk-light.css new file mode 120000 index 0000000..a973b8c --- /dev/null +++ b/gtk-3.0/gtk-light.css @@ -0,0 +1 @@ +../../Yaru-Orange/gtk-3.0/gtk-light.css \ No newline at end of file diff --git a/gtk-3.0/gtk.css b/gtk-3.0/gtk.css new file mode 100644 index 0000000..0cc04ec --- /dev/null +++ b/gtk-3.0/gtk.css @@ -0,0 +1,6466 @@ +/*************************** + * Check and Radio buttons * + ***************************/ +/************ + * Switches * + ************/ +* { + padding: 0; + -GtkToolButton-icon-spacing: 4; + -GtkTextView-error-underline-color: #c7162b; + -GtkCheckButton-indicator-size: 16; + -GtkCheckMenuItem-indicator-size: 16; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkScrolledWindow-scrollbars-within-bevel: 1; + -GtkToolItemGroup-expander-size: 11; + -GtkExpander-expander-size: 16; + -GtkTreeView-expander-size: 11; + -GtkTreeView-horizontal-separator: 4; + -GtkMenu-horizontal-padding: 0; + -GtkMenu-vertical-padding: 0; + -GtkWidget-link-color: #19B6EE; + -GtkWidget-visited-link-color: #0b7196; + -GtkWidget-focus-padding: 2; + -GtkWidget-focus-line-width: 1; + -GtkWidget-text-handle-width: 28; + -GtkWidget-text-handle-height: 28; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 0; + -GtkStatusbar-shadow-type: none; + outline-color: rgba(61, 61, 61, 0.3); + outline-style: dashed; + outline-offset: -3px; + outline-width: 1px; + outline-radius: 2px; } + +/*************** + * Base States * + ***************/ +.background { + color: #3D3D3D; + background-color: #f1f2f4; } + .background:backdrop { + text-shadow: none; + icon-shadow: none; + color: #959697; + background-color: #edeef0; } + +/* + These wildcard seems unavoidable, need to investigate. + Wildcards are bad and troublesome, use them with care, + or better, just don't. + Everytime a wildcard is used a kitten dies, painfully. +*/ +*:insensitive { + -gtk-image-effect: dim; } + +.gtkstyle-fallback { + background-color: #F5F6F7; + color: #3D3D3D; } + .gtkstyle-fallback:prelight { + background-color: white; + color: #3D3D3D; } + .gtkstyle-fallback:active { + background-color: #d9dde0; + color: #3D3D3D; } + .gtkstyle-fallback:insensitive { + background-color: #f9fafa; + color: #999a9a; } + .gtkstyle-fallback:selected { + background-color: #e95420; + color: #FFFFFF; } + +.view { + color: #2D2D2D; + background-color: #FFFFFF; } + .view:backdrop { + color: rgba(45, 45, 45, 0.8); + background-color: #f2f2f2; } + .view:selected { + border-radius: 3px; } + +.rubberband, .content-view.rubberband, GtkTreeView.view.rubberband, .view.content-view.rubberband { + border: 1px solid #c34113; + background-color: rgba(195, 65, 19, 0.2); } + +.label.separator { + color: #3D3D3D; } + .label.separator:backdrop { + color: #959697; } + +.label:insensitive { + color: #999a9a; } + .label:insensitive:backdrop { + color: #c2c8ce; } + +.dim-label, .titlebar .subtitle, +.header-bar .subtitle, .label.separator { + opacity: 0.55; + text-shadow: none; } + +GtkAssistant .sidebar { + background-color: #FFFFFF; + border-top: 1px solid #c2c8ce; } + GtkAssistant .sidebar:dir(ltr) { + border-right: 1px solid #c2c8ce; } + GtkAssistant .sidebar:dir(rtl) { + border-left: 1px solid #c2c8ce; } + GtkAssistant .sidebar:backdrop { + background-color: #f2f2f2; + border-color: #bac0c7; } + +GtkAssistant.csd .sidebar { + border-top-style: none; } + +GtkAssistant .sidebar .label { + padding: 6px 12px; } + +GtkAssistant .sidebar .label.highlight { + background-color: #d0d1d2; } + +GtkTextView { + background-color: #fafbfb; } + GtkTextView:backdrop { + background-color: #eff0f1; } + +.grid-child { + padding: 3px; + border-radius: 3px; } + .grid-child:selected { + outline-offset: -2px; } + +.osd .scale-popup, .app-notification, +.app-notification.frame, .popover.osd, .osd { + color: #F7F7F7; + border: none; + background-color: rgba(24, 24, 24, 0.7); + background-clip: padding-box; + outline-color: rgba(247, 247, 247, 0.3); + box-shadow: none; + text-shadow: 0 1px black; + icon-shadow: 0 1px black; } + .osd .scale-popup:backdrop, .app-notification:backdrop, .osd:backdrop { + text-shadow: none; } + +/********************* + * Spinner Animation * + *********************/ +@keyframes spin { + to { + -gtk-icon-transform: rotate(1turn); } } + +.spinner { + background-image: none; + background-color: blue; + opacity: 0; + color: #19B6EE; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } + .spinner:active { + opacity: 1; + animation: spin 1s linear infinite; } + .spinner:active:insensitive { + opacity: 0.5; } + .spinner:backdrop { + color: #31bef0; } + +/**************** + * Text Entries * + ****************/ +.entry { + border: 1px solid; + padding: 5px 8px 6px; + border-radius: 3px; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + background-color: transparent; + background-image: linear-gradient(to bottom, #eaecee, #fbfbfc 3px, #FFFFFF 90%); + color: #3D3D3D; + border-color: #c2c8ce; + border-top-color: #cccccc; + box-shadow: inset 0 1px 1px 0px rgba(0, 0, 0, 0.05); + background-color: #FFFFFF; } + .entry.image.left { + padding-left: 0; } + .entry.image.right { + padding-right: 0; } + .entry else { + border-top-color: #cccccc; } + .entry.flat, .entry.flat:focus { + padding: 2px; + background-color: transparent; + background-image: linear-gradient(to bottom, #eaecee, #fbfbfc 3px, #FFFFFF 90%); + color: #3D3D3D; + border-color: #c2c8ce; + border-top-color: #cccccc; + box-shadow: inset 0 1px 1px 0px rgba(0, 0, 0, 0.05); + background-color: #FFFFFF; + border: none; + border-radius: 0; } + .entry.flat else, .entry.flat:focus else { + border-top-color: #cccccc; } + .entry:focus { + background-color: transparent; + background-image: linear-gradient(to bottom, #eaecee, #fbfbfc 3px, #FFFFFF 90%); + box-shadow: inset 0 1px 1px 0px rgba(0, 0, 0, 0.05); + border-color: #e95420; } + .entry:insensitive { + background-color: transparent; + background-image: linear-gradient(to bottom, #eaecee, #fbfbfc 3px, #FFFFFF 90%); + background-color: transparent; + border-color: rgba(194, 200, 206, 0.7); + box-shadow: none; + color: #9e9e9e; } + .entry:backdrop { + background-color: transparent; + background-image: linear-gradient(to bottom, #eaecee, #fbfbfc 3px, #FFFFFF 90%); + background-color: rgba(255, 255, 255, 0.7); + border-color: #bac0c7; + box-shadow: none; + color: #646464; } + .entry:backdrop .label, .entry:backdrop { + color: #646464; } + .entry:backdrop:insensitive { + background-color: transparent; + background-image: linear-gradient(to bottom, #eaecee, #fbfbfc 3px, #FFFFFF 90%); + background-color: transparent; + border-color: rgba(186, 192, 199, 0.7); + box-shadow: none; + color: #c2c8ce; } + .entry:backdrop:insensitive .label, .entry:backdrop:insensitive { + color: #959697; } + .entry.progressbar { + margin: 2px -6px; + border-radius: 0; + border-width: 0 0 2px; + border-color: #19B6EE; + border-style: solid; + background-image: none; + background-color: transparent; + box-shadow: none; } + .entry.progressbar:backdrop { + background-color: transparent; } + .linked:not(.vertical) > .entry:focus + .entry, .linked:not(.vertical) > .entry:focus + .button, .linked:not(.vertical) > .entry:focus + GtkComboBox > .the-button-in-the-combobox, .linked:not(.vertical) > .entry:focus + GtkComboBoxText > .the-button-in-the-combobox { + border-left-color: #e95420; } + .entry.error { + color: #c7162b; + border-color: #c7162b; } + .entry.error:focus { + background-color: transparent; + background-image: linear-gradient(to bottom, #eaecee, #fbfbfc 3px, #FFFFFF 90%); + box-shadow: inset 0 1px 1px 0px rgba(0, 0, 0, 0.05); + border-color: #c7162b; } + .entry.error:selected, .entry.error:selected:focus { + background-color: #c7162b; } + .entry.warning { + color: #f99b11; + border-color: #f99b11; } + .entry.warning:focus { + background-color: transparent; + background-image: linear-gradient(to bottom, #eaecee, #fbfbfc 3px, #FFFFFF 90%); + box-shadow: inset 0 1px 1px 0px rgba(0, 0, 0, 0.05); + border-color: #f99b11; } + .entry.warning:selected, .entry.warning:selected:focus { + background-color: #f99b11; } + .entry.image { + color: #646464; } + .entry.image:hover { + color: #3D3D3D; } + .entry.image:active { + color: #e95420; } + .entry.image:backdrop { + color: #a8a8a9; } + .osd .entry { + background-color: transparent; + background-image: linear-gradient(to bottom, #eaecee, #fbfbfc 3px, #FFFFFF 90%); + color: rgba(247, 247, 247, 0.9); + border-color: #3e3e3e; + background-color: rgba(62, 62, 62, 0.5); + background-clip: padding-box; + box-shadow: none; } + .osd .entry:focus { + background-color: transparent; + background-image: linear-gradient(to bottom, #eaecee, #fbfbfc 3px, #FFFFFF 90%); + color: rgba(247, 247, 247, 0.9); + border-color: #e95420; + background-color: rgba(62, 62, 62, 0.5); + background-clip: padding-box; } + .osd .entry:backdrop { + background-color: transparent; + background-image: linear-gradient(to bottom, #eaecee, #fbfbfc 3px, #FFFFFF 90%); + color: rgba(247, 247, 247, 0.9); + border-color: #3e3e3e; + background-color: rgba(62, 62, 62, 0.5); + background-clip: padding-box; + box-shadow: none; } + .osd .entry:insensitive { + background-color: transparent; + background-image: linear-gradient(to bottom, #eaecee, #fbfbfc 3px, #FFFFFF 90%); + color: #888888; + border-color: #3e3e3e; + background-color: rgba(46, 46, 46, 0.5); + background-clip: padding-box; + box-shadow: none; } + +.linked.vertical > .entry:not(:last-child) { + box-shadow: none; } + +.linked.vertical > .entry:focus:not(:last-child) { + box-shadow: inset 0 0 0 1px #e95420; } + +.linked.vertical > .entry:not(:insensitive) + .entry:not(:insensitive) { + border-top-color: #edeff0; + background-image: linear-gradient(to bottom, #FFFFFF); } + .linked.vertical > .entry:not(:insensitive) + .entry:not(:insensitive):backdrop { + border-top-color: #e1e3e5; + background-image: linear-gradient(to bottom, #f2f2f2); } + +.linked.vertical > .entry + .entry:focus:not(:last-child) { + border-top-color: #e95420; + box-shadow: inset 0 0 0 1px #e95420; } + +.linked.vertical > .entry + .entry:focus:last-child { + border-top-color: #e95420; } + +.linked.vertical > .entry:focus:not(:only-child) + .entry, +.linked.vertical > .entry:focus:not(:only-child) + .button, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, +.linked.vertical > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { + border-top-color: #e95420; } + +/*********** + * Buttons * + ***********/ +@keyframes needs_attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#e95420), to(transparent)); } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#e95420), to(transparent)); } } + +.button { + animation: shrink 1s linear infinite; + padding: 2px 6px; + border: 1px solid; + border-radius: 4px; + outline-color: rgba(233, 84, 32, 0.6); + outline-style: dashed; + outline-offset: -3px; + outline-radius: 4px; + background-color: #fefefe; + background-image: none; + color: #3D3D3D; + border-color: #c2c8ce; + box-shadow: 0 1px rgba(0, 0, 0, 0.1); + text-shadow: none; + icon-shadow: none; } + .sidebar-button.button, .button.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; + text-shadow: none; + icon-shadow: none; + transition: none; } + .sidebar-button.button:hover, .button.flat:hover { + transition: all 0.4s ease-out; } + .sidebar-button.button:hover:active, .button.flat:hover:active { + transition: all 0.4s ease-out; } + .sidebar-button.button:hover, .button.flat:hover { + -gtk-image-effect: highlight; + background-color: white; + background-image: none; + color: #3D3D3D; + border-color: white; + box-shadow: none; + text-shadow: none; + icon-shadow: none; } + .sidebar-button.button:hover:backdrop, .button.flat:hover:backdrop { + color: #3D3D3D; + background-color: rgba(255, 255, 255, 0.7); + background-image: none; + border-color: rgba(255, 255, 255, 0.7); + box-shadow: none; } + .sidebar-button.button:active, .sidebar-button.button:checked, .button.flat:active, .button.flat:checked { + box-shadow: inset 0 1px 1px 0px rgba(0, 0, 0, 0.05); + border-color: #c2c8ce; + border-top-color: #7b8896; + background-color: #eaecee; + background-image: none; + text-shadow: none; + icon-shadow: none; } + .sidebar-button.button:insensitive, .button.flat:insensitive { + background-color: #F5F6F7; + background-image: none; + border-color: #F5F6F7; + box-shadow: none; } + .sidebar-button.button:insensitive .label, .sidebar-button.button:insensitive, .button.flat:insensitive .label, .button.flat:insensitive { + color: #999a9a; } + .sidebar-button.button:insensitive:active, .sidebar-button.button:insensitive:checked, .button.flat:insensitive:active, .button.flat:insensitive:checked { + background-color: #eaeaea; + background-image: none; + border-color: #eaeaea; + box-shadow: none; } + .sidebar-button.button:insensitive:active .label, .sidebar-button.button:insensitive:active, .sidebar-button.button:insensitive:checked .label, .sidebar-button.button:insensitive:checked, .button.flat:insensitive:active .label, .button.flat:insensitive:active, .button.flat:insensitive:checked .label, .button.flat:insensitive:checked { + color: #999a9a; } + .sidebar-button.button:backdrop, .button.flat:backdrop { + -gtk-image-effect: dim; + background-color: rgba(254, 254, 254, 0.7); + background-image: none; + border-color: rgba(254, 254, 254, 0.7); + box-shadow: none; } + .sidebar-button.button:backdrop .label, .sidebar-button.button:backdrop, .button.flat:backdrop .label, .button.flat:backdrop { + color: rgba(45, 45, 45, 0.8); } + .sidebar-button.button:backdrop:active, .sidebar-button.button:backdrop:checked, .button.flat:backdrop:active, .button.flat:backdrop:checked { + background-color: #dcdfe3; + background-image: none; + border-color: #dcdfe3; + border-top-color: #a6afb8; + box-shadow: none; } + .sidebar-button.button:backdrop:active .label, .sidebar-button.button:backdrop:active, .sidebar-button.button:backdrop:checked .label, .sidebar-button.button:backdrop:checked, .button.flat:backdrop:active .label, .button.flat:backdrop:active, .button.flat:backdrop:checked .label, .button.flat:backdrop:checked { + color: #959697; } + .sidebar-button.button:backdrop:insensitive, .button.flat:backdrop:insensitive { + background-color: #edeef0; + background-image: none; + border-color: #edeef0; + box-shadow: none; } + .sidebar-button.button:backdrop:insensitive .label, .sidebar-button.button:backdrop:insensitive, .button.flat:backdrop:insensitive .label, .button.flat:backdrop:insensitive { + color: rgba(45, 45, 45, 0.5); } + .sidebar-button.button:backdrop:insensitive:active, .sidebar-button.button:backdrop:insensitive:checked, .button.flat:backdrop:insensitive:active, .button.flat:backdrop:insensitive:checked { + background-color: #d3d7dc; + background-image: none; + border-color: #d3d7dc; + border-top-color: #98a2ac; } + .sidebar-button.button:backdrop:insensitive:active .label, .sidebar-button.button:backdrop:insensitive:checked .label, .button.flat:backdrop:insensitive:active .label, .button.flat:backdrop:insensitive:checked .label { + color: rgba(45, 45, 45, 0.3); } + .button:hover { + -gtk-image-effect: highlight; + background-color: white; + background-image: none; + color: #3D3D3D; + border-color: #c2c8ce; + border-bottom-color: #98a2ac; + box-shadow: 0 1px rgba(0, 0, 0, 0.15); + text-shadow: none; + icon-shadow: none; + -gtk-image-effect: highlight; } + .button:active, .button:checked { + box-shadow: inset 0 1px 1px 0px rgba(0, 0, 0, 0.05); + border-color: #c2c8ce; + border-top-color: #7b8896; + background-color: #eaecee; + background-image: none; + text-shadow: none; + icon-shadow: none; + transition-duration: 50ms; } + .button:backdrop, .button.flat:backdrop { + -gtk-image-effect: dim; + background-color: rgba(254, 254, 254, 0.7); + background-image: none; + border-color: #bac0c7; + box-shadow: none; + -gtk-image-effect: none; } + .button:backdrop .label, .button:backdrop, .button.flat:backdrop .label, .button.flat:backdrop { + color: rgba(45, 45, 45, 0.8); } + .button:backdrop:active, .button:backdrop:checked, .button.flat:backdrop:active, .button.flat:backdrop:checked { + background-color: #dcdfe3; + background-image: none; + border-color: #bac0c7; + border-top-color: #a6afb8; + box-shadow: none; } + .button:backdrop:active .label, .button:backdrop:active, .button:backdrop:checked .label, .button:backdrop:checked, .button.flat:backdrop:active .label, .button.flat:backdrop:active, .button.flat:backdrop:checked .label, .button.flat:backdrop:checked { + color: #959697; } + .button:backdrop:insensitive, .button.flat:backdrop:insensitive { + background-color: #edeef0; + background-image: none; + border-color: rgba(186, 192, 199, 0.7); + box-shadow: none; } + .button:backdrop:insensitive .label, .button:backdrop:insensitive, .button.flat:backdrop:insensitive .label, .button.flat:backdrop:insensitive { + color: rgba(45, 45, 45, 0.5); } + .button:backdrop:insensitive:active, .button:backdrop:insensitive:checked, .button.flat:backdrop:insensitive:active, .button.flat:backdrop:insensitive:checked { + background-color: #d3d7dc; + background-image: none; + border-color: #bac0c7; + border-top-color: #98a2ac; } + .button:backdrop:insensitive:active .label, .button:backdrop:insensitive:checked .label, .button.flat:backdrop:insensitive:active .label, .button.flat:backdrop:insensitive:checked .label { + color: rgba(45, 45, 45, 0.3); } + .button.flat:backdrop, .button.flat:insensitive, .button.flat:backdrop:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; + text-shadow: none; + icon-shadow: none; } + .button:insensitive { + background-color: #F5F6F7; + background-image: none; + border-color: rgba(194, 200, 206, 0.7); + box-shadow: 0 1px transparent; } + .button:insensitive .label, .button:insensitive { + color: #999a9a; } + .button:insensitive:active, .button:insensitive:checked { + background-color: #eaeaea; + background-image: none; + border-color: rgba(194, 200, 206, 0.7); + border-top-color: rgba(166, 175, 184, 0.7); + box-shadow: inset 0 1px 1px 0px rgba(0, 0, 0, 0.05); } + .button:insensitive:active .label, .button:insensitive:active, .button:insensitive:checked .label, .button:insensitive:checked { + color: #999a9a; } + .button.osd { + color: #F7F7F7; + border-radius: 5px; + outline-color: rgba(247, 247, 247, 0.3); + color: #F7F7F7; + border-color: black; + background-color: #181818; + background-image: none; + background-clip: padding-box; + box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.05); + border: none; + box-shadow: none; } + .button.osd.image-button, GtkScaleButton.osd.button, + GtkVolumeButton.osd.button { + padding: 13px; } + .button.osd:hover { + color: white; + border-color: #101010; + background-color: #373737; + background-image: none; + background-clip: padding-box; + box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.05); + border: none; + box-shadow: none; } + .button.osd:active, .button.osd:checked { + color: white; + border-color: black; + background-color: #181818; + background-image: none; + background-clip: padding-box; + box-shadow: inset 0 2px 3px -1px rgba(0, 0, 0, 0.2); + border: none; + box-shadow: none; } + .button.osd:insensitive, .button.osd:backdrop:insensitive { + color: #888888; + background-color: rgba(46, 46, 46, 0.5); + background-image: none; + border-color: rgba(8, 8, 8, 0.5); + background-clip: padding-box; + box-shadow: none; + border: none; } + .button.osd:backdrop { + color: #F7F7F7; + border-color: rgba(0, 0, 0, 0.7); + background-color: rgba(24, 24, 24, 0.7); + background-image: none; + background-clip: padding-box; + box-shadow: none; + border: none; } + .osd .button { + color: #F7F7F7; + border-color: black; + background-color: #181818; + background-image: none; + background-clip: padding-box; + box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.05); + border-radius: 0; + border-left-style: none; } + .osd .button:dir(rtl) { + border-radius: 0; + border-right-style: none; + border-left-style: solid; } + .osd .button:first-child { + border-radius: 3px 0 0 3px; + border-left-style: solid; } + .osd .button:last-child { + border-radius: 0 3px 3px 0; } + .osd .button:last-child:dir(rtl) { + border-right-style: solid; } + .osd .button:only-child { + border-radius: 3px; + border-style: solid; } + .osd .button:hover { + color: white; + border-color: #101010; + background-color: #373737; + background-image: none; + background-clip: padding-box; + box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.05); } + .osd .button:active, .osd .button:checked, .osd .button:backdrop:active, .osd .button:backdrop:checked { + color: white; + border-color: black; + background-color: #181818; + background-image: none; + background-clip: padding-box; + box-shadow: inset 0 2px 3px -1px rgba(0, 0, 0, 0.2); } + .osd .button:insensitive, .osd .button:backdrop:insensitive { + color: #888888; + background-color: rgba(46, 46, 46, 0.5); + background-image: none; + border-color: rgba(8, 8, 8, 0.5); + background-clip: padding-box; + box-shadow: none; } + .osd .button:backdrop { + color: #F7F7F7; + border-color: rgba(0, 0, 0, 0.7); + background-color: rgba(24, 24, 24, 0.7); + background-image: none; + background-clip: padding-box; + box-shadow: none; } + .osd .button.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; + text-shadow: none; + icon-shadow: none; + box-shadow: none; + text-shadow: 0 1px black; + icon-shadow: 0 1px black; } + .osd .button.flat:hover { + color: white; + border-color: #101010; + background-color: #373737; + background-image: none; + background-clip: padding-box; + box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.05); + background-clip: padding-box; + border-color: transparent; + box-shadow: none; } + .osd .button.flat:insensitive { + color: #888888; + background-color: rgba(46, 46, 46, 0.5); + background-image: none; + border-color: rgba(8, 8, 8, 0.5); + background-clip: padding-box; + box-shadow: none; + background-image: none; + border-color: transparent; + box-shadow: none; } + .osd .button.flat:backdrop { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; + text-shadow: none; + icon-shadow: none; } + .osd .button.flat:active, .osd .button.flat:checked { + color: white; + border-color: black; + background-color: #181818; + background-image: none; + background-clip: padding-box; + box-shadow: inset 0 2px 3px -1px rgba(0, 0, 0, 0.2); + background-clip: padding-box; + border-color: transparent; + box-shadow: none; } + .button.suggested-action { + background-color: #e95420; + background-image: none; + color: white; + border-color: #c34113; + box-shadow: 0 1px rgba(0, 0, 0, 0.1); + text-shadow: none; + icon-shadow: none; } + .button.suggested-action.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; + text-shadow: none; + icon-shadow: none; + color: #e95420; } + .button.suggested-action:hover { + -gtk-image-effect: highlight; + background-image: none; + color: white; + border-color: #c34113; + border-bottom-color: #8b2e0e; + box-shadow: 0 1px rgba(0, 0, 0, 0.15); + text-shadow: none; + icon-shadow: none; } + .button.suggested-action:active, .button.suggested-action:checked { + box-shadow: none; + border-color: #c34113; + background-image: none; + text-shadow: none; + icon-shadow: none; } + .button.suggested-action:backdrop, .button.suggested-action.flat:backdrop { + -gtk-image-effect: dim; + background-color: #eb6637; + background-image: none; + border-color: #cc4414; + box-shadow: none; } + .button.suggested-action:backdrop .label, .button.suggested-action:backdrop, .button.suggested-action.flat:backdrop .label, .button.suggested-action.flat:backdrop { + color: #f7c2af; } + .button.suggested-action:backdrop:active, .button.suggested-action:backdrop:checked, .button.suggested-action.flat:backdrop:active, .button.suggested-action.flat:backdrop:checked { + background-color: #b93e12; + background-image: none; + border-color: #cc4414; + box-shadow: none; } + .button.suggested-action:backdrop:active .label, .button.suggested-action:backdrop:active, .button.suggested-action:backdrop:checked .label, .button.suggested-action:backdrop:checked, .button.suggested-action.flat:backdrop:active .label, .button.suggested-action.flat:backdrop:active, .button.suggested-action.flat:backdrop:checked .label, .button.suggested-action.flat:backdrop:checked { + color: #f1d8d0; } + .button.suggested-action:backdrop:insensitive, .button.suggested-action.flat:backdrop:insensitive { + background-color: #edeef0; + background-image: none; + border-color: rgba(186, 192, 199, 0.7); + box-shadow: none; } + .button.suggested-action:backdrop:insensitive .label, .button.suggested-action:backdrop:insensitive, .button.suggested-action.flat:backdrop:insensitive .label, .button.suggested-action.flat:backdrop:insensitive { + color: rgba(45, 45, 45, 0.5); } + .button.suggested-action:backdrop:insensitive:active, .button.suggested-action:backdrop:insensitive:checked, .button.suggested-action.flat:backdrop:insensitive:active, .button.suggested-action.flat:backdrop:insensitive:checked { + background-color: #ac3911; + background-image: none; + border-color: #cc4414; } + .button.suggested-action:backdrop:insensitive:active .label, .button.suggested-action:backdrop:insensitive:checked .label, .button.suggested-action.flat:backdrop:insensitive:active .label, .button.suggested-action.flat:backdrop:insensitive:checked .label { + color: #c97e64; } + .button.suggested-action.flat:backdrop, .button.suggested-action.flat:insensitive, .button.suggested-action.flat:backdrop:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; + text-shadow: none; + icon-shadow: none; + color: rgba(233, 84, 32, 0.8); } + .button.suggested-action:insensitive { + background-color: #F5F6F7; + background-image: none; + border-color: rgba(194, 200, 206, 0.7); + box-shadow: 0 1px transparent; } + .button.suggested-action:insensitive .label, .button.suggested-action:insensitive { + color: #999a9a; } + .button.suggested-action:insensitive:active, .button.suggested-action:insensitive:checked { + background-color: #e8521c; + background-image: none; + border-color: rgba(194, 200, 206, 0.7); + border-top-color: rgba(166, 175, 184, 0.7); + box-shadow: inset 0 1px 1px 0px rgba(0, 0, 0, 0.05); } + .button.suggested-action:insensitive:active .label, .button.suggested-action:insensitive:active, .button.suggested-action:insensitive:checked .label, .button.suggested-action:insensitive:checked { + color: #f6baa4; } + .osd .button.suggested-action { + color: #F7F7F7; + border-color: rgba(181, 60, 18, 0.5); + background-color: rgba(233, 84, 32, 0.5); + background-image: none; + background-clip: padding-box; + box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.4); } + .osd .button.suggested-action:hover { + color: white; + border-color: rgba(181, 60, 18, 0.7); + background-color: rgba(233, 84, 32, 0.7); + background-image: none; + background-clip: padding-box; + box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.4); } + .osd .button.suggested-action:active, .osd .button.suggested-action:checked, .osd .button.suggested-action:backdrop:active, .osd .button.suggested-action:backdrop:checked { + color: white; + border-color: #b53c12; + background-color: #e95420; + background-image: none; + background-clip: padding-box; + box-shadow: inset 0 2px 3px -1px rgba(0, 0, 0, 0.2); } + .osd .button.suggested-action:insensitive, .osd .button.suggested-action:backdrop:insensitive { + color: #888888; + background-color: rgba(46, 46, 46, 0.5); + background-image: none; + border-color: rgba(8, 8, 8, 0.5); + background-clip: padding-box; + box-shadow: none; } + .osd .button.suggested-action:backdrop { + color: #F7F7F7; + border-color: rgba(181, 60, 18, 0.5); + background-color: rgba(233, 84, 32, 0.5); + background-image: none; + background-clip: padding-box; + box-shadow: none; } + .button.destructive-action { + background-color: #991121; + background-image: none; + color: white; + border-color: #6b0c17; + box-shadow: 0 1px rgba(0, 0, 0, 0.1); + text-shadow: none; + icon-shadow: none; } + .button.destructive-action.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; + text-shadow: none; + icon-shadow: none; + color: #991121; } + .button.destructive-action:hover { + -gtk-image-effect: highlight; + background-color: #b01326; + background-image: none; + color: white; + border-color: #6b0c17; + border-bottom-color: #34060b; + box-shadow: 0 1px rgba(0, 0, 0, 0.15); + text-shadow: none; + icon-shadow: none; } + .button.destructive-action:active, .button.destructive-action:checked { + box-shadow: none; + border-color: #540912; + border-top-color: #3d070d; + background-color: #6b0c17; + background-image: none; + text-shadow: none; + icon-shadow: none; } + .button.destructive-action:backdrop, .button.destructive-action.flat:backdrop { + -gtk-image-effect: dim; + background-color: #b01326; + background-image: none; + border-color: #6b0c17; + box-shadow: none; } + .button.destructive-action:backdrop .label, .button.destructive-action:backdrop, .button.destructive-action.flat:backdrop .label, .button.destructive-action.flat:backdrop { + color: #dfa1a8; } + .button.destructive-action:backdrop:active, .button.destructive-action:backdrop:checked, .button.destructive-action.flat:backdrop:active, .button.destructive-action.flat:backdrop:checked { + background-color: #620b15; + background-image: none; + border-color: #6b0c17; + box-shadow: none; } + .button.destructive-action:backdrop:active .label, .button.destructive-action:backdrop:active, .button.destructive-action:backdrop:checked .label, .button.destructive-action:backdrop:checked, .button.destructive-action.flat:backdrop:active .label, .button.destructive-action.flat:backdrop:active, .button.destructive-action.flat:backdrop:checked .label, .button.destructive-action.flat:backdrop:checked { + color: #e0ced0; } + .button.destructive-action:backdrop:insensitive, .button.destructive-action.flat:backdrop:insensitive { + background-color: #edeef0; + background-image: none; + border-color: rgba(186, 192, 199, 0.7); + box-shadow: none; } + .button.destructive-action:backdrop:insensitive .label, .button.destructive-action:backdrop:insensitive, .button.destructive-action.flat:backdrop:insensitive .label, .button.destructive-action.flat:backdrop:insensitive { + color: rgba(45, 45, 45, 0.5); } + .button.destructive-action:backdrop:insensitive:active, .button.destructive-action:backdrop:insensitive:checked, .button.destructive-action.flat:backdrop:insensitive:active, .button.destructive-action.flat:backdrop:insensitive:checked { + background-color: #540912; + background-image: none; + border-color: #6b0c17; } + .button.destructive-action:backdrop:insensitive:active .label, .button.destructive-action:backdrop:insensitive:checked .label, .button.destructive-action.flat:backdrop:insensitive:active .label, .button.destructive-action.flat:backdrop:insensitive:checked .label { + color: #905f65; } + .button.destructive-action.flat:backdrop, .button.destructive-action.flat:insensitive, .button.destructive-action.flat:backdrop:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; + text-shadow: none; + icon-shadow: none; + color: rgba(153, 17, 33, 0.8); } + .button.destructive-action:insensitive { + background-color: #F5F6F7; + background-image: none; + border-color: rgba(194, 200, 206, 0.7); + box-shadow: 0 1px transparent; } + .button.destructive-action:insensitive .label, .button.destructive-action:insensitive { + color: #999a9a; } + .button.destructive-action:insensitive:active, .button.destructive-action:insensitive:checked { + background-color: #892b36; + background-image: none; + border-color: rgba(194, 200, 206, 0.7); + border-top-color: rgba(166, 175, 184, 0.7); + box-shadow: inset 0 1px 1px 0px rgba(0, 0, 0, 0.05); } + .button.destructive-action:insensitive:active .label, .button.destructive-action:insensitive:active, .button.destructive-action:insensitive:checked .label, .button.destructive-action:insensitive:checked { + color: #d0aaaf; } + .osd .button.destructive-action { + color: #F7F7F7; + border-color: rgba(84, 9, 18, 0.5); + background-color: rgba(153, 17, 33, 0.5); + background-image: none; + background-clip: padding-box; + box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.05); } + .osd .button.destructive-action:hover { + color: white; + border-color: rgba(84, 9, 18, 0.7); + background-color: rgba(153, 17, 33, 0.7); + background-image: none; + background-clip: padding-box; + box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.05); } + .osd .button.destructive-action:active, .osd .button.destructive-action:checked, .osd .button.destructive-action:backdrop:active, .osd .button.destructive-action:backdrop:checked { + color: white; + border-color: #540912; + background-color: #991121; + background-image: none; + background-clip: padding-box; + box-shadow: inset 0 2px 3px -1px rgba(0, 0, 0, 0.2); } + .osd .button.destructive-action:insensitive, .osd .button.destructive-action:backdrop:insensitive { + color: #888888; + background-color: rgba(46, 46, 46, 0.5); + background-image: none; + border-color: rgba(8, 8, 8, 0.5); + background-clip: padding-box; + box-shadow: none; } + .osd .button.destructive-action:backdrop { + color: #F7F7F7; + border-color: rgba(84, 9, 18, 0.5); + background-color: rgba(153, 17, 33, 0.5); + background-image: none; + background-clip: padding-box; + box-shadow: none; } + .button.image-button, GtkScaleButton.button, + GtkVolumeButton.button { + padding: 8px; } + .button.text-button, GtkScaleButton.button.text-button, + GtkVolumeButton.button.text-button { + padding-left: 16px; + padding-right: 16px; } + .button.text-button.image-button, GtkScaleButton.text-button.button, + GtkVolumeButton.text-button.button { + padding: 5px 8px 6px; } + .button.text-button.image-button .label:first-child, GtkScaleButton.text-button.button .label:first-child, + GtkVolumeButton.text-button.button .label:first-child { + padding-left: 8px; } + .button.text-button.image-button .label:last-child, GtkScaleButton.text-button.button .label:last-child, + GtkVolumeButton.text-button.button .label:last-child { + padding-right: 8px; } + .stack-switcher > .button { + outline-offset: -3px; } + .stack-switcher > .button > .label { + padding-left: 6px; + padding-right: 6px; } + .stack-switcher > .button > GtkImage { + padding-left: 6px; + padding-right: 6px; + padding-top: 3px; + padding-bottom: 3px; } + .stack-switcher > .button.text-button, .stack-switcher > GtkScaleButton.button.text-button, + .stack-switcher > GtkVolumeButton.button.text-button { + padding: 5px 10px 6px; } + .stack-switcher > .button.image-button, .stack-switcher > GtkScaleButton.button, + .stack-switcher > GtkVolumeButton.button { + padding: 5px 2px; } + .stack-switcher > .button.needs-attention:active > .label, .stack-switcher > .button.needs-attention:active > GtkImage, .stack-switcher > .button.needs-attention:checked > .label, .stack-switcher > .button.needs-attention:checked > GtkImage { + animation: none; + background-image: none; } + .inline-toolbar .button, .inline-toolbar .button:backdrop { + border-radius: 2px; + border-width: 1px; } + .primary-toolbar .button { + icon-shadow: none; } + +.sidebar-item.needs-attention > .label, .stack-switcher > .button.needs-attention > .label, .stack-switcher > .button.needs-attention > GtkImage { + animation: needs_attention 150ms ease-in; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#e95420), to(transparent)), -gtk-gradient(radial, center center, 0, center center, 0.5, to(rgba(255, 255, 255, 0.769231)), to(transparent)); + background-size: 6px 6px, 6px 6px; + background-repeat: no-repeat; + background-position: right 3px, right 4px; } + .sidebar-item.needs-attention > .label:backdrop, .stack-switcher > .button.needs-attention > .label:backdrop, .stack-switcher > .button.needs-attention > GtkImage:backdrop { + background-size: 6px 6px, 0 0; } + .sidebar-item.needs-attention > .label:dir(rtl), .stack-switcher > .button.needs-attention > .label:dir(rtl), .stack-switcher > .button.needs-attention > GtkImage:dir(rtl) { + background-position: left 3px, left 4px; } + +.inline-toolbar GtkToolButton > .button { + background-color: #fefefe; + background-image: none; + color: #3D3D3D; + border-color: #c2c8ce; + box-shadow: 0 1px rgba(0, 0, 0, 0.1); + text-shadow: none; + icon-shadow: none; } + .inline-toolbar GtkToolButton > .button:hover { + -gtk-image-effect: highlight; + background-color: white; + background-image: none; + color: #3D3D3D; + border-color: #c2c8ce; + border-bottom-color: #98a2ac; + box-shadow: 0 1px rgba(0, 0, 0, 0.15); + text-shadow: none; + icon-shadow: none; } + .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { + box-shadow: inset 0 1px 1px 0px rgba(0, 0, 0, 0.05); + border-color: #c2c8ce; + border-top-color: #7b8896; + background-color: #eaecee; + background-image: none; + text-shadow: none; + icon-shadow: none; } + .inline-toolbar GtkToolButton > .button:insensitive { + background-color: #F5F6F7; + background-image: none; + border-color: rgba(194, 200, 206, 0.7); + box-shadow: 0 1px transparent; } + .inline-toolbar GtkToolButton > .button:insensitive .label, .inline-toolbar GtkToolButton > .button:insensitive { + color: #999a9a; } + .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { + background-color: #eaeaea; + background-image: none; + border-color: rgba(194, 200, 206, 0.7); + border-top-color: rgba(166, 175, 184, 0.7); + box-shadow: inset 0 1px 1px 0px rgba(0, 0, 0, 0.05); } + .inline-toolbar GtkToolButton > .button:insensitive:active .label, .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked .label, .inline-toolbar GtkToolButton > .button:insensitive:checked { + color: #999a9a; } + .inline-toolbar GtkToolButton > .button:backdrop { + -gtk-image-effect: dim; + background-color: rgba(254, 254, 254, 0.7); + background-image: none; + border-color: #bac0c7; + box-shadow: none; } + .inline-toolbar GtkToolButton > .button:backdrop .label, .inline-toolbar GtkToolButton > .button:backdrop { + color: rgba(45, 45, 45, 0.8); } + .inline-toolbar GtkToolButton > .button:backdrop:active, .inline-toolbar GtkToolButton > .button:backdrop:checked { + background-color: #dcdfe3; + background-image: none; + border-color: #bac0c7; + border-top-color: #a6afb8; + box-shadow: none; } + .inline-toolbar GtkToolButton > .button:backdrop:active .label, .inline-toolbar GtkToolButton > .button:backdrop:active, .inline-toolbar GtkToolButton > .button:backdrop:checked .label, .inline-toolbar GtkToolButton > .button:backdrop:checked { + color: #959697; } + .inline-toolbar GtkToolButton > .button:backdrop:insensitive { + background-color: #edeef0; + background-image: none; + border-color: rgba(186, 192, 199, 0.7); + box-shadow: none; } + .inline-toolbar GtkToolButton > .button:backdrop:insensitive .label, .inline-toolbar GtkToolButton > .button:backdrop:insensitive { + color: rgba(45, 45, 45, 0.5); } + .inline-toolbar GtkToolButton > .button:backdrop:insensitive:active, .inline-toolbar GtkToolButton > .button:backdrop:insensitive:checked { + background-color: #d3d7dc; + background-image: none; + border-color: #bac0c7; + border-top-color: #98a2ac; } + .inline-toolbar GtkToolButton > .button:backdrop:insensitive:active .label, .inline-toolbar GtkToolButton > .button:backdrop:insensitive:checked .label { + color: rgba(45, 45, 45, 0.3); } + +.linked > GtkComboBox > .the-button-in-the-combobox:dir(ltr), .linked > GtkComboBox > .the-button-in-the-combobox:dir(rtl), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(ltr), +.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(rtl), .linked:not(.vertical) > .entry, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:backdrop:active, .osd .button:backdrop:checked, .osd .button:insensitive, .osd .button:backdrop:insensitive, .osd .button:backdrop, .osd .button.suggested-action, .osd .button.suggested-action:hover, .osd .button.suggested-action:active, .osd .button.suggested-action:checked, .osd .button.suggested-action:backdrop:active, .osd .button.suggested-action:backdrop:checked, .osd .button.suggested-action:insensitive, .osd .button.suggested-action:backdrop:insensitive, .osd .button.suggested-action:backdrop, .osd .button.destructive-action, .osd .button.destructive-action:hover, .osd .button.destructive-action:active, .osd .button.destructive-action:checked, .osd .button.destructive-action:backdrop:active, .osd .button.destructive-action:backdrop:checked, .osd .button.destructive-action:insensitive, .osd .button.destructive-action:backdrop:insensitive, .osd .button.destructive-action:backdrop, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked > .button, .linked > .button:hover, .linked > .button:active, .linked > .button:checked, .linked > .button:backdrop, .inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar.search-bar GtkToolButton > .button.flat, .inline-toolbar.location-bar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, +.inline-toolbar.toolbar GtkToolButton:backdrop > .button.flat, +.inline-toolbar.search-bar GtkToolButton:backdrop > .button.flat, +.inline-toolbar.location-bar GtkToolButton:backdrop > .button.flat, +.inline-toolbar GtkToolButton:backdrop > .button.flat { + border-radius: 0; + border-right-style: none; } + +.linked > GtkComboBox:first-child > .the-button-in-the-combobox .linked:not(.vertical) > .entry:first-child, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .linked:not(.vertical) > .entry:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .linked:not(.vertical) > .entry:first-child, .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .linked:not(.vertical) > .entry:first-child, .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .linked:not(.vertical) > .entry:first-child, .inline-toolbar GtkToolButton:first-child > .button.flat .linked:not(.vertical) > .entry:first-child, +.inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .linked:not(.vertical) > .entry:first-child, +.inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .linked:not(.vertical) > .entry:first-child, +.inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .linked:not(.vertical) > .entry:first-child, +.inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .linked:not(.vertical) > .entry:first-child, .linked > GtkComboBox:first-child > .the-button-in-the-combobox .osd .button:first-child:hover, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .osd .button:first-child:hover, .osd .linked > GtkComboBox:first-child > .the-button-in-the-combobox .button:first-child:hover, +.osd .linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .button:first-child:hover, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .osd .button:first-child:hover, .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .osd .button:first-child:hover, .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .osd .button:first-child:hover, .inline-toolbar GtkToolButton:first-child > .button.flat .osd .button:first-child:hover, .osd .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .button:first-child:hover, .osd .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .button:first-child:hover, .osd .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .button:first-child:hover, .osd .inline-toolbar GtkToolButton:first-child > .button.flat .button:first-child:hover, +.inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button:first-child:hover, +.inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button:first-child:hover, +.inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button:first-child:hover, +.inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button:first-child:hover, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .button:first-child:hover, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .button:first-child:hover, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .button:first-child:hover, +.osd .inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .button:first-child:hover, .linked > GtkComboBox:first-child > .the-button-in-the-combobox .osd .button:first-child:active, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .osd .button:first-child:active, .osd .linked > GtkComboBox:first-child > .the-button-in-the-combobox .button:first-child:active, +.osd .linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .button:first-child:active, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .osd .button:first-child:active, .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .osd .button:first-child:active, .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .osd .button:first-child:active, .inline-toolbar GtkToolButton:first-child > .button.flat .osd .button:first-child:active, .osd .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .button:first-child:active, .osd .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .button:first-child:active, .osd .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .button:first-child:active, .osd .inline-toolbar GtkToolButton:first-child > .button.flat .button:first-child:active, +.inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button:first-child:active, +.inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button:first-child:active, +.inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button:first-child:active, +.inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button:first-child:active, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .button:first-child:active, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .button:first-child:active, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .button:first-child:active, +.osd .inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .button:first-child:active, .linked > GtkComboBox:first-child > .the-button-in-the-combobox .osd .button:first-child:checked, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .osd .button:first-child:checked, .osd .linked > GtkComboBox:first-child > .the-button-in-the-combobox .button:first-child:checked, +.osd .linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .button:first-child:checked, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .osd .button:first-child:checked, .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .osd .button:first-child:checked, .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .osd .button:first-child:checked, .inline-toolbar GtkToolButton:first-child > .button.flat .osd .button:first-child:checked, .osd .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .button:first-child:checked, .osd .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .button:first-child:checked, .osd .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .button:first-child:checked, .osd .inline-toolbar GtkToolButton:first-child > .button.flat .button:first-child:checked, +.inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button:first-child:checked, +.inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button:first-child:checked, +.inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button:first-child:checked, +.inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button:first-child:checked, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .button:first-child:checked, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .button:first-child:checked, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .button:first-child:checked, +.osd .inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .button:first-child:checked, .linked > GtkComboBox:first-child > .the-button-in-the-combobox .osd .button:first-child:backdrop:active, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .osd .button:first-child:backdrop:active, .osd .linked > GtkComboBox:first-child > .the-button-in-the-combobox .button:first-child:backdrop:active, +.osd .linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .button:first-child:backdrop:active, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .osd .button:first-child:backdrop:active, .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .osd .button:first-child:backdrop:active, .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .osd .button:first-child:backdrop:active, .inline-toolbar GtkToolButton:first-child > .button.flat .osd .button:first-child:backdrop:active, .osd .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .button:first-child:backdrop:active, .osd .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .button:first-child:backdrop:active, .osd .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .button:first-child:backdrop:active, .osd .inline-toolbar GtkToolButton:first-child > .button.flat .button:first-child:backdrop:active, +.inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button:first-child:backdrop:active, +.inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button:first-child:backdrop:active, +.inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button:first-child:backdrop:active, +.inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button:first-child:backdrop:active, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .button:first-child:backdrop:active, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .button:first-child:backdrop:active, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .button:first-child:backdrop:active, +.osd .inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .button:first-child:backdrop:active, .linked > GtkComboBox:first-child > .the-button-in-the-combobox .osd .button:first-child:backdrop:checked, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .osd .button:first-child:backdrop:checked, .osd .linked > GtkComboBox:first-child > .the-button-in-the-combobox .button:first-child:backdrop:checked, +.osd .linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .button:first-child:backdrop:checked, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .osd .button:first-child:backdrop:checked, .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .osd .button:first-child:backdrop:checked, .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .osd .button:first-child:backdrop:checked, .inline-toolbar GtkToolButton:first-child > .button.flat .osd .button:first-child:backdrop:checked, .osd .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .button:first-child:backdrop:checked, .osd .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .button:first-child:backdrop:checked, .osd .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .button:first-child:backdrop:checked, .osd .inline-toolbar GtkToolButton:first-child > .button.flat .button:first-child:backdrop:checked, +.inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button:first-child:backdrop:checked, +.inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button:first-child:backdrop:checked, +.inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button:first-child:backdrop:checked, +.inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button:first-child:backdrop:checked, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .button:first-child:backdrop:checked, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .button:first-child:backdrop:checked, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .button:first-child:backdrop:checked, +.osd .inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .button:first-child:backdrop:checked, .linked > GtkComboBox:first-child > .the-button-in-the-combobox .osd .button:first-child:insensitive, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .osd .button:first-child:insensitive, .osd .linked > GtkComboBox:first-child > .the-button-in-the-combobox .button:first-child:insensitive, +.osd .linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .button:first-child:insensitive, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .osd .button:first-child:insensitive, .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .osd .button:first-child:insensitive, .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .osd .button:first-child:insensitive, .inline-toolbar GtkToolButton:first-child > .button.flat .osd .button:first-child:insensitive, .osd .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .button:first-child:insensitive, .osd .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .button:first-child:insensitive, .osd .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .button:first-child:insensitive, .osd .inline-toolbar GtkToolButton:first-child > .button.flat .button:first-child:insensitive, +.inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button:first-child:insensitive, +.inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button:first-child:insensitive, +.inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button:first-child:insensitive, +.inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button:first-child:insensitive, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .button:first-child:insensitive, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .button:first-child:insensitive, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .button:first-child:insensitive, +.osd .inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .button:first-child:insensitive, .linked > GtkComboBox:first-child > .the-button-in-the-combobox .osd .button:first-child:backdrop:insensitive, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .osd .button:first-child:backdrop:insensitive, .osd .linked > GtkComboBox:first-child > .the-button-in-the-combobox .button:first-child:backdrop:insensitive, +.osd .linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .button:first-child:backdrop:insensitive, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .osd .button:first-child:backdrop:insensitive, .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .osd .button:first-child:backdrop:insensitive, .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .osd .button:first-child:backdrop:insensitive, .inline-toolbar GtkToolButton:first-child > .button.flat .osd .button:first-child:backdrop:insensitive, .osd .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .button:first-child:backdrop:insensitive, .osd .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .button:first-child:backdrop:insensitive, .osd .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .button:first-child:backdrop:insensitive, .osd .inline-toolbar GtkToolButton:first-child > .button.flat .button:first-child:backdrop:insensitive, +.inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button:first-child:backdrop:insensitive, +.inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button:first-child:backdrop:insensitive, +.inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button:first-child:backdrop:insensitive, +.inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button:first-child:backdrop:insensitive, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .button:first-child:backdrop:insensitive, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .button:first-child:backdrop:insensitive, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .button:first-child:backdrop:insensitive, +.osd .inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .button:first-child:backdrop:insensitive, .linked > GtkComboBox:first-child > .the-button-in-the-combobox .osd .button:first-child:backdrop, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .osd .button:first-child:backdrop, .osd .linked > GtkComboBox:first-child > .the-button-in-the-combobox .button:first-child:backdrop, +.osd .linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .button:first-child:backdrop, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .osd .button:first-child:backdrop, .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .osd .button:first-child:backdrop, .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .osd .button:first-child:backdrop, .inline-toolbar GtkToolButton:first-child > .button.flat .osd .button:first-child:backdrop, .osd .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .button:first-child:backdrop, .osd .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .button:first-child:backdrop, .osd .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .button:first-child:backdrop, .osd .inline-toolbar GtkToolButton:first-child > .button.flat .button:first-child:backdrop, +.inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button:first-child:backdrop, +.inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button:first-child:backdrop, +.inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button:first-child:backdrop, +.inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button:first-child:backdrop, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .button:first-child:backdrop, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .button:first-child:backdrop, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .button:first-child:backdrop, +.osd .inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .button:first-child:backdrop, .linked > GtkComboBox:first-child > .the-button-in-the-combobox .osd .button.suggested-action:first-child, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .osd .button.suggested-action:first-child, .osd .linked > GtkComboBox:first-child > .the-button-in-the-combobox .button.suggested-action:first-child, +.osd .linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .button.suggested-action:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .osd .button.suggested-action:first-child, .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .osd .button.suggested-action:first-child, .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .osd .button.suggested-action:first-child, .inline-toolbar GtkToolButton:first-child > .button.flat .osd .button.suggested-action:first-child, .osd .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .button.suggested-action:first-child, .osd .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .button.suggested-action:first-child, .osd .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .button.suggested-action:first-child, .osd .inline-toolbar GtkToolButton:first-child > .button.flat .button.suggested-action:first-child, +.inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button.suggested-action:first-child, +.inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button.suggested-action:first-child, +.inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button.suggested-action:first-child, +.inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button.suggested-action:first-child, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .button.suggested-action:first-child, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .button.suggested-action:first-child, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .button.suggested-action:first-child, +.osd .inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .button.suggested-action:first-child, .linked > GtkComboBox:first-child > .the-button-in-the-combobox .osd .button.suggested-action:first-child:hover, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .osd .button.suggested-action:first-child:hover, .osd .linked > GtkComboBox:first-child > .the-button-in-the-combobox .button.suggested-action:first-child:hover, +.osd .linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .button.suggested-action:first-child:hover, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .osd .button.suggested-action:first-child:hover, .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .osd .button.suggested-action:first-child:hover, .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .osd .button.suggested-action:first-child:hover, .inline-toolbar GtkToolButton:first-child > .button.flat .osd .button.suggested-action:first-child:hover, .osd .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .button.suggested-action:first-child:hover, .osd .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .button.suggested-action:first-child:hover, .osd .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .button.suggested-action:first-child:hover, .osd .inline-toolbar GtkToolButton:first-child > .button.flat .button.suggested-action:first-child:hover, +.inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button.suggested-action:first-child:hover, +.inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button.suggested-action:first-child:hover, +.inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button.suggested-action:first-child:hover, +.inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button.suggested-action:first-child:hover, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .button.suggested-action:first-child:hover, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .button.suggested-action:first-child:hover, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .button.suggested-action:first-child:hover, +.osd .inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .button.suggested-action:first-child:hover, .linked > GtkComboBox:first-child > .the-button-in-the-combobox .osd .button.suggested-action:first-child:active, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .osd .button.suggested-action:first-child:active, .osd .linked > GtkComboBox:first-child > .the-button-in-the-combobox .button.suggested-action:first-child:active, +.osd .linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .button.suggested-action:first-child:active, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .osd .button.suggested-action:first-child:active, .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .osd .button.suggested-action:first-child:active, .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .osd .button.suggested-action:first-child:active, .inline-toolbar GtkToolButton:first-child > .button.flat .osd .button.suggested-action:first-child:active, .osd .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .button.suggested-action:first-child:active, .osd .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .button.suggested-action:first-child:active, .osd .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .button.suggested-action:first-child:active, .osd .inline-toolbar GtkToolButton:first-child > .button.flat .button.suggested-action:first-child:active, +.inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button.suggested-action:first-child:active, +.inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button.suggested-action:first-child:active, +.inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button.suggested-action:first-child:active, +.inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button.suggested-action:first-child:active, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .button.suggested-action:first-child:active, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .button.suggested-action:first-child:active, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .button.suggested-action:first-child:active, +.osd .inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .button.suggested-action:first-child:active, .linked > GtkComboBox:first-child > .the-button-in-the-combobox .osd .button.suggested-action:first-child:checked, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .osd .button.suggested-action:first-child:checked, .osd .linked > GtkComboBox:first-child > .the-button-in-the-combobox .button.suggested-action:first-child:checked, +.osd .linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .button.suggested-action:first-child:checked, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .osd .button.suggested-action:first-child:checked, .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .osd .button.suggested-action:first-child:checked, .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .osd .button.suggested-action:first-child:checked, .inline-toolbar GtkToolButton:first-child > .button.flat .osd .button.suggested-action:first-child:checked, .osd .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .button.suggested-action:first-child:checked, .osd .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .button.suggested-action:first-child:checked, .osd .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .button.suggested-action:first-child:checked, .osd .inline-toolbar GtkToolButton:first-child > .button.flat .button.suggested-action:first-child:checked, +.inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button.suggested-action:first-child:checked, +.inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button.suggested-action:first-child:checked, +.inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button.suggested-action:first-child:checked, +.inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button.suggested-action:first-child:checked, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .button.suggested-action:first-child:checked, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .button.suggested-action:first-child:checked, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .button.suggested-action:first-child:checked, +.osd .inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .button.suggested-action:first-child:checked, .linked > GtkComboBox:first-child > .the-button-in-the-combobox .osd .button.suggested-action:first-child:backdrop:active, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .osd .button.suggested-action:first-child:backdrop:active, .osd .linked > GtkComboBox:first-child > .the-button-in-the-combobox .button.suggested-action:first-child:backdrop:active, +.osd .linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .button.suggested-action:first-child:backdrop:active, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .osd .button.suggested-action:first-child:backdrop:active, .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .osd .button.suggested-action:first-child:backdrop:active, .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .osd .button.suggested-action:first-child:backdrop:active, .inline-toolbar GtkToolButton:first-child > .button.flat .osd .button.suggested-action:first-child:backdrop:active, .osd .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .button.suggested-action:first-child:backdrop:active, .osd .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .button.suggested-action:first-child:backdrop:active, .osd .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .button.suggested-action:first-child:backdrop:active, .osd .inline-toolbar GtkToolButton:first-child > .button.flat .button.suggested-action:first-child:backdrop:active, +.inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button.suggested-action:first-child:backdrop:active, +.inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button.suggested-action:first-child:backdrop:active, +.inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button.suggested-action:first-child:backdrop:active, +.inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button.suggested-action:first-child:backdrop:active, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .button.suggested-action:first-child:backdrop:active, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .button.suggested-action:first-child:backdrop:active, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .button.suggested-action:first-child:backdrop:active, +.osd .inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .button.suggested-action:first-child:backdrop:active, .linked > GtkComboBox:first-child > .the-button-in-the-combobox .osd .button.suggested-action:first-child:backdrop:checked, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .osd .button.suggested-action:first-child:backdrop:checked, .osd .linked > GtkComboBox:first-child > .the-button-in-the-combobox .button.suggested-action:first-child:backdrop:checked, +.osd .linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .button.suggested-action:first-child:backdrop:checked, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .osd .button.suggested-action:first-child:backdrop:checked, .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .osd .button.suggested-action:first-child:backdrop:checked, .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .osd .button.suggested-action:first-child:backdrop:checked, .inline-toolbar GtkToolButton:first-child > .button.flat .osd .button.suggested-action:first-child:backdrop:checked, .osd .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .button.suggested-action:first-child:backdrop:checked, .osd .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .button.suggested-action:first-child:backdrop:checked, .osd .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .button.suggested-action:first-child:backdrop:checked, .osd .inline-toolbar GtkToolButton:first-child > .button.flat .button.suggested-action:first-child:backdrop:checked, +.inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button.suggested-action:first-child:backdrop:checked, +.inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button.suggested-action:first-child:backdrop:checked, +.inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button.suggested-action:first-child:backdrop:checked, +.inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button.suggested-action:first-child:backdrop:checked, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .button.suggested-action:first-child:backdrop:checked, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .button.suggested-action:first-child:backdrop:checked, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .button.suggested-action:first-child:backdrop:checked, +.osd .inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .button.suggested-action:first-child:backdrop:checked, .linked > GtkComboBox:first-child > .the-button-in-the-combobox .osd .button.suggested-action:first-child:insensitive, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .osd .button.suggested-action:first-child:insensitive, .osd .linked > GtkComboBox:first-child > .the-button-in-the-combobox .button.suggested-action:first-child:insensitive, +.osd .linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .button.suggested-action:first-child:insensitive, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .osd .button.suggested-action:first-child:insensitive, .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .osd .button.suggested-action:first-child:insensitive, .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .osd .button.suggested-action:first-child:insensitive, .inline-toolbar GtkToolButton:first-child > .button.flat .osd .button.suggested-action:first-child:insensitive, .osd .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .button.suggested-action:first-child:insensitive, .osd .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .button.suggested-action:first-child:insensitive, .osd .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .button.suggested-action:first-child:insensitive, .osd .inline-toolbar GtkToolButton:first-child > .button.flat .button.suggested-action:first-child:insensitive, +.inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button.suggested-action:first-child:insensitive, +.inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button.suggested-action:first-child:insensitive, +.inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button.suggested-action:first-child:insensitive, +.inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button.suggested-action:first-child:insensitive, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .button.suggested-action:first-child:insensitive, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .button.suggested-action:first-child:insensitive, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .button.suggested-action:first-child:insensitive, +.osd .inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .button.suggested-action:first-child:insensitive, .linked > GtkComboBox:first-child > .the-button-in-the-combobox .osd .button.suggested-action:first-child:backdrop:insensitive, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .osd .button.suggested-action:first-child:backdrop:insensitive, .osd .linked > GtkComboBox:first-child > .the-button-in-the-combobox .button.suggested-action:first-child:backdrop:insensitive, +.osd .linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .button.suggested-action:first-child:backdrop:insensitive, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .osd .button.suggested-action:first-child:backdrop:insensitive, .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .osd .button.suggested-action:first-child:backdrop:insensitive, .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .osd .button.suggested-action:first-child:backdrop:insensitive, .inline-toolbar GtkToolButton:first-child > .button.flat .osd .button.suggested-action:first-child:backdrop:insensitive, .osd .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .button.suggested-action:first-child:backdrop:insensitive, .osd .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .button.suggested-action:first-child:backdrop:insensitive, .osd .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .button.suggested-action:first-child:backdrop:insensitive, .osd .inline-toolbar GtkToolButton:first-child > .button.flat .button.suggested-action:first-child:backdrop:insensitive, +.inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button.suggested-action:first-child:backdrop:insensitive, +.inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button.suggested-action:first-child:backdrop:insensitive, +.inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button.suggested-action:first-child:backdrop:insensitive, +.inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button.suggested-action:first-child:backdrop:insensitive, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .button.suggested-action:first-child:backdrop:insensitive, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .button.suggested-action:first-child:backdrop:insensitive, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .button.suggested-action:first-child:backdrop:insensitive, +.osd .inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .button.suggested-action:first-child:backdrop:insensitive, .linked > GtkComboBox:first-child > .the-button-in-the-combobox .osd .button.suggested-action:first-child:backdrop, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .osd .button.suggested-action:first-child:backdrop, .osd .linked > GtkComboBox:first-child > .the-button-in-the-combobox .button.suggested-action:first-child:backdrop, +.osd .linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .button.suggested-action:first-child:backdrop, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .osd .button.suggested-action:first-child:backdrop, .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .osd .button.suggested-action:first-child:backdrop, .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .osd .button.suggested-action:first-child:backdrop, .inline-toolbar GtkToolButton:first-child > .button.flat .osd .button.suggested-action:first-child:backdrop, .osd .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .button.suggested-action:first-child:backdrop, .osd .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .button.suggested-action:first-child:backdrop, .osd .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .button.suggested-action:first-child:backdrop, .osd .inline-toolbar GtkToolButton:first-child > .button.flat .button.suggested-action:first-child:backdrop, +.inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button.suggested-action:first-child:backdrop, +.inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button.suggested-action:first-child:backdrop, +.inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button.suggested-action:first-child:backdrop, +.inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button.suggested-action:first-child:backdrop, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .button.suggested-action:first-child:backdrop, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .button.suggested-action:first-child:backdrop, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .button.suggested-action:first-child:backdrop, +.osd .inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .button.suggested-action:first-child:backdrop, .linked > GtkComboBox:first-child > .the-button-in-the-combobox .osd .button.destructive-action:first-child, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .osd .button.destructive-action:first-child, .osd .linked > GtkComboBox:first-child > .the-button-in-the-combobox .button.destructive-action:first-child, +.osd .linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .button.destructive-action:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .osd .button.destructive-action:first-child, .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .osd .button.destructive-action:first-child, .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .osd .button.destructive-action:first-child, .inline-toolbar GtkToolButton:first-child > .button.flat .osd .button.destructive-action:first-child, .osd .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .button.destructive-action:first-child, .osd .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .button.destructive-action:first-child, .osd .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .button.destructive-action:first-child, .osd .inline-toolbar GtkToolButton:first-child > .button.flat .button.destructive-action:first-child, +.inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button.destructive-action:first-child, +.inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button.destructive-action:first-child, +.inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button.destructive-action:first-child, +.inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button.destructive-action:first-child, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .button.destructive-action:first-child, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .button.destructive-action:first-child, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .button.destructive-action:first-child, +.osd .inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .button.destructive-action:first-child, .linked > GtkComboBox:first-child > .the-button-in-the-combobox .osd .button.destructive-action:first-child:hover, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .osd .button.destructive-action:first-child:hover, .osd .linked > GtkComboBox:first-child > .the-button-in-the-combobox .button.destructive-action:first-child:hover, +.osd .linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .button.destructive-action:first-child:hover, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .osd .button.destructive-action:first-child:hover, .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .osd .button.destructive-action:first-child:hover, .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .osd .button.destructive-action:first-child:hover, .inline-toolbar GtkToolButton:first-child > .button.flat .osd .button.destructive-action:first-child:hover, .osd .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .button.destructive-action:first-child:hover, .osd .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .button.destructive-action:first-child:hover, .osd .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .button.destructive-action:first-child:hover, .osd .inline-toolbar GtkToolButton:first-child > .button.flat .button.destructive-action:first-child:hover, +.inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button.destructive-action:first-child:hover, +.inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button.destructive-action:first-child:hover, +.inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button.destructive-action:first-child:hover, +.inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button.destructive-action:first-child:hover, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .button.destructive-action:first-child:hover, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .button.destructive-action:first-child:hover, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .button.destructive-action:first-child:hover, +.osd .inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .button.destructive-action:first-child:hover, .linked > GtkComboBox:first-child > .the-button-in-the-combobox .osd .button.destructive-action:first-child:active, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .osd .button.destructive-action:first-child:active, .osd .linked > GtkComboBox:first-child > .the-button-in-the-combobox .button.destructive-action:first-child:active, +.osd .linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .button.destructive-action:first-child:active, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .osd .button.destructive-action:first-child:active, .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .osd .button.destructive-action:first-child:active, .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .osd .button.destructive-action:first-child:active, .inline-toolbar GtkToolButton:first-child > .button.flat .osd .button.destructive-action:first-child:active, .osd .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .button.destructive-action:first-child:active, .osd .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .button.destructive-action:first-child:active, .osd .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .button.destructive-action:first-child:active, .osd .inline-toolbar GtkToolButton:first-child > .button.flat .button.destructive-action:first-child:active, +.inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button.destructive-action:first-child:active, +.inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button.destructive-action:first-child:active, +.inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button.destructive-action:first-child:active, +.inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button.destructive-action:first-child:active, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .button.destructive-action:first-child:active, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .button.destructive-action:first-child:active, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .button.destructive-action:first-child:active, +.osd .inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .button.destructive-action:first-child:active, .linked > GtkComboBox:first-child > .the-button-in-the-combobox .osd .button.destructive-action:first-child:checked, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .osd .button.destructive-action:first-child:checked, .osd .linked > GtkComboBox:first-child > .the-button-in-the-combobox .button.destructive-action:first-child:checked, +.osd .linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .button.destructive-action:first-child:checked, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .osd .button.destructive-action:first-child:checked, .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .osd .button.destructive-action:first-child:checked, .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .osd .button.destructive-action:first-child:checked, .inline-toolbar GtkToolButton:first-child > .button.flat .osd .button.destructive-action:first-child:checked, .osd .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .button.destructive-action:first-child:checked, .osd .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .button.destructive-action:first-child:checked, .osd .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .button.destructive-action:first-child:checked, .osd .inline-toolbar GtkToolButton:first-child > .button.flat .button.destructive-action:first-child:checked, +.inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button.destructive-action:first-child:checked, +.inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button.destructive-action:first-child:checked, +.inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button.destructive-action:first-child:checked, +.inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button.destructive-action:first-child:checked, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .button.destructive-action:first-child:checked, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .button.destructive-action:first-child:checked, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .button.destructive-action:first-child:checked, +.osd .inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .button.destructive-action:first-child:checked, .linked > GtkComboBox:first-child > .the-button-in-the-combobox .osd .button.destructive-action:first-child:backdrop:active, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .osd .button.destructive-action:first-child:backdrop:active, .osd .linked > GtkComboBox:first-child > .the-button-in-the-combobox .button.destructive-action:first-child:backdrop:active, +.osd .linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .button.destructive-action:first-child:backdrop:active, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .osd .button.destructive-action:first-child:backdrop:active, .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .osd .button.destructive-action:first-child:backdrop:active, .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .osd .button.destructive-action:first-child:backdrop:active, .inline-toolbar GtkToolButton:first-child > .button.flat .osd .button.destructive-action:first-child:backdrop:active, .osd .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .button.destructive-action:first-child:backdrop:active, .osd .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .button.destructive-action:first-child:backdrop:active, .osd .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .button.destructive-action:first-child:backdrop:active, .osd .inline-toolbar GtkToolButton:first-child > .button.flat .button.destructive-action:first-child:backdrop:active, +.inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button.destructive-action:first-child:backdrop:active, +.inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button.destructive-action:first-child:backdrop:active, +.inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button.destructive-action:first-child:backdrop:active, +.inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button.destructive-action:first-child:backdrop:active, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .button.destructive-action:first-child:backdrop:active, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .button.destructive-action:first-child:backdrop:active, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .button.destructive-action:first-child:backdrop:active, +.osd .inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .button.destructive-action:first-child:backdrop:active, .linked > GtkComboBox:first-child > .the-button-in-the-combobox .osd .button.destructive-action:first-child:backdrop:checked, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .osd .button.destructive-action:first-child:backdrop:checked, .osd .linked > GtkComboBox:first-child > .the-button-in-the-combobox .button.destructive-action:first-child:backdrop:checked, +.osd .linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .button.destructive-action:first-child:backdrop:checked, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .osd .button.destructive-action:first-child:backdrop:checked, .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .osd .button.destructive-action:first-child:backdrop:checked, .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .osd .button.destructive-action:first-child:backdrop:checked, .inline-toolbar GtkToolButton:first-child > .button.flat .osd .button.destructive-action:first-child:backdrop:checked, .osd .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .button.destructive-action:first-child:backdrop:checked, .osd .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .button.destructive-action:first-child:backdrop:checked, .osd .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .button.destructive-action:first-child:backdrop:checked, .osd .inline-toolbar GtkToolButton:first-child > .button.flat .button.destructive-action:first-child:backdrop:checked, +.inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button.destructive-action:first-child:backdrop:checked, +.inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button.destructive-action:first-child:backdrop:checked, +.inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button.destructive-action:first-child:backdrop:checked, +.inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button.destructive-action:first-child:backdrop:checked, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .button.destructive-action:first-child:backdrop:checked, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .button.destructive-action:first-child:backdrop:checked, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .button.destructive-action:first-child:backdrop:checked, +.osd .inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .button.destructive-action:first-child:backdrop:checked, .linked > GtkComboBox:first-child > .the-button-in-the-combobox .osd .button.destructive-action:first-child:insensitive, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .osd .button.destructive-action:first-child:insensitive, .osd .linked > GtkComboBox:first-child > .the-button-in-the-combobox .button.destructive-action:first-child:insensitive, +.osd .linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .button.destructive-action:first-child:insensitive, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .osd .button.destructive-action:first-child:insensitive, .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .osd .button.destructive-action:first-child:insensitive, .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .osd .button.destructive-action:first-child:insensitive, .inline-toolbar GtkToolButton:first-child > .button.flat .osd .button.destructive-action:first-child:insensitive, .osd .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .button.destructive-action:first-child:insensitive, .osd .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .button.destructive-action:first-child:insensitive, .osd .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .button.destructive-action:first-child:insensitive, .osd .inline-toolbar GtkToolButton:first-child > .button.flat .button.destructive-action:first-child:insensitive, +.inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button.destructive-action:first-child:insensitive, +.inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button.destructive-action:first-child:insensitive, +.inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button.destructive-action:first-child:insensitive, +.inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button.destructive-action:first-child:insensitive, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .button.destructive-action:first-child:insensitive, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .button.destructive-action:first-child:insensitive, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .button.destructive-action:first-child:insensitive, +.osd .inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .button.destructive-action:first-child:insensitive, .linked > GtkComboBox:first-child > .the-button-in-the-combobox .osd .button.destructive-action:first-child:backdrop:insensitive, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .osd .button.destructive-action:first-child:backdrop:insensitive, .osd .linked > GtkComboBox:first-child > .the-button-in-the-combobox .button.destructive-action:first-child:backdrop:insensitive, +.osd .linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .button.destructive-action:first-child:backdrop:insensitive, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .osd .button.destructive-action:first-child:backdrop:insensitive, .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .osd .button.destructive-action:first-child:backdrop:insensitive, .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .osd .button.destructive-action:first-child:backdrop:insensitive, .inline-toolbar GtkToolButton:first-child > .button.flat .osd .button.destructive-action:first-child:backdrop:insensitive, .osd .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .button.destructive-action:first-child:backdrop:insensitive, .osd .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .button.destructive-action:first-child:backdrop:insensitive, .osd .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .button.destructive-action:first-child:backdrop:insensitive, .osd .inline-toolbar GtkToolButton:first-child > .button.flat .button.destructive-action:first-child:backdrop:insensitive, +.inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button.destructive-action:first-child:backdrop:insensitive, +.inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button.destructive-action:first-child:backdrop:insensitive, +.inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button.destructive-action:first-child:backdrop:insensitive, +.inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button.destructive-action:first-child:backdrop:insensitive, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .button.destructive-action:first-child:backdrop:insensitive, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .button.destructive-action:first-child:backdrop:insensitive, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .button.destructive-action:first-child:backdrop:insensitive, +.osd .inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .button.destructive-action:first-child:backdrop:insensitive, .linked > GtkComboBox:first-child > .the-button-in-the-combobox .osd .button.destructive-action:first-child:backdrop, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .osd .button.destructive-action:first-child:backdrop, .osd .linked > GtkComboBox:first-child > .the-button-in-the-combobox .button.destructive-action:first-child:backdrop, +.osd .linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .button.destructive-action:first-child:backdrop, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .osd .button.destructive-action:first-child:backdrop, .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .osd .button.destructive-action:first-child:backdrop, .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .osd .button.destructive-action:first-child:backdrop, .inline-toolbar GtkToolButton:first-child > .button.flat .osd .button.destructive-action:first-child:backdrop, .osd .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .button.destructive-action:first-child:backdrop, .osd .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .button.destructive-action:first-child:backdrop, .osd .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .button.destructive-action:first-child:backdrop, .osd .inline-toolbar GtkToolButton:first-child > .button.flat .button.destructive-action:first-child:backdrop, +.inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button.destructive-action:first-child:backdrop, +.inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button.destructive-action:first-child:backdrop, +.inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .osd .button.destructive-action:first-child:backdrop, +.inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .osd .button.destructive-action:first-child:backdrop, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .button.destructive-action:first-child:backdrop, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .button.destructive-action:first-child:backdrop, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .button.destructive-action:first-child:backdrop, +.osd .inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .button.destructive-action:first-child:backdrop, .linked > GtkComboBox:first-child > .the-button-in-the-combobox .inline-toolbar .button:first-child, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .inline-toolbar .button:first-child, .inline-toolbar .linked > GtkComboBox:first-child > .the-button-in-the-combobox .button:first-child, +.inline-toolbar .linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .button:first-child, .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .button:first-child, .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .button:first-child, .inline-toolbar GtkToolButton:first-child > .button.flat .button:first-child, +.inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .button:first-child, +.inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .button:first-child, +.inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .button:first-child, +.inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .button:first-child, .linked > GtkComboBox:first-child > .the-button-in-the-combobox .inline-toolbar .button:first-child:backdrop, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .inline-toolbar .button:first-child:backdrop, .inline-toolbar .linked > GtkComboBox:first-child > .the-button-in-the-combobox .button:first-child:backdrop, +.inline-toolbar .linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .button:first-child:backdrop, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .button:first-child:backdrop, .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .button:first-child:backdrop, .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .button:first-child:backdrop, .inline-toolbar GtkToolButton:first-child > .button.flat .button:first-child:backdrop, +.inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .button:first-child:backdrop, +.inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .button:first-child:backdrop, +.inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .button:first-child:backdrop, +.inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .button:first-child:backdrop, .linked > GtkComboBox:first-child > .the-button-in-the-combobox .linked > .button:first-child, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .linked > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .linked > .button:first-child, .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .linked > .button:first-child, .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .linked > .button:first-child, .inline-toolbar GtkToolButton:first-child > .button.flat .linked > .button:first-child, +.inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .linked > .button:first-child, +.inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .linked > .button:first-child, +.inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .linked > .button:first-child, +.inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .linked > .button:first-child, .linked > GtkComboBox:first-child > .the-button-in-the-combobox .linked > .button:first-child:hover, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .linked > .button:first-child:hover, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .linked > .button:first-child:hover, .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .linked > .button:first-child:hover, .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .linked > .button:first-child:hover, .inline-toolbar GtkToolButton:first-child > .button.flat .linked > .button:first-child:hover, +.inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .linked > .button:first-child:hover, +.inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .linked > .button:first-child:hover, +.inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .linked > .button:first-child:hover, +.inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .linked > .button:first-child:hover, .linked > GtkComboBox:first-child > .the-button-in-the-combobox .linked > .button:first-child:active, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .linked > .button:first-child:active, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .linked > .button:first-child:active, .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .linked > .button:first-child:active, .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .linked > .button:first-child:active, .inline-toolbar GtkToolButton:first-child > .button.flat .linked > .button:first-child:active, +.inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .linked > .button:first-child:active, +.inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .linked > .button:first-child:active, +.inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .linked > .button:first-child:active, +.inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .linked > .button:first-child:active, .linked > GtkComboBox:first-child > .the-button-in-the-combobox .linked > .button:first-child:checked, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .linked > .button:first-child:checked, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .linked > .button:first-child:checked, .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .linked > .button:first-child:checked, .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .linked > .button:first-child:checked, .inline-toolbar GtkToolButton:first-child > .button.flat .linked > .button:first-child:checked, +.inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .linked > .button:first-child:checked, +.inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .linked > .button:first-child:checked, +.inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .linked > .button:first-child:checked, +.inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .linked > .button:first-child:checked, .linked > GtkComboBox:first-child > .the-button-in-the-combobox .linked > .button:first-child:backdrop, +.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox .linked > .button:first-child:backdrop, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat .linked > .button:first-child:backdrop, .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat .linked > .button:first-child:backdrop, .inline-toolbar.location-bar GtkToolButton:first-child > .button.flat .linked > .button:first-child:backdrop, .inline-toolbar GtkToolButton:first-child > .button.flat .linked > .button:first-child:backdrop, +.inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat .linked > .button:first-child:backdrop, +.inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat .linked > .button:first-child:backdrop, +.inline-toolbar.location-bar GtkToolButton:backdrop:first-child > .button.flat .linked > .button:first-child:backdrop, +.inline-toolbar GtkToolButton:backdrop:first-child > .button.flat .linked > .button:first-child:backdrop { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } + +.linked > GtkComboBox:last-child > .the-button-in-the-combobox .linked:not(.vertical) > .entry:last-child, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .linked:not(.vertical) > .entry:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .linked:not(.vertical) > .entry:last-child, .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .linked:not(.vertical) > .entry:last-child, .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .linked:not(.vertical) > .entry:last-child, .inline-toolbar GtkToolButton:last-child > .button.flat .linked:not(.vertical) > .entry:last-child, +.inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .linked:not(.vertical) > .entry:last-child, +.inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .linked:not(.vertical) > .entry:last-child, +.inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .linked:not(.vertical) > .entry:last-child, +.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .linked:not(.vertical) > .entry:last-child, .linked > GtkComboBox:last-child > .the-button-in-the-combobox .osd .button:last-child:hover, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .osd .button:last-child:hover, .osd .linked > GtkComboBox:last-child > .the-button-in-the-combobox .button:last-child:hover, +.osd .linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .button:last-child:hover, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .osd .button:last-child:hover, .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .osd .button:last-child:hover, .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .osd .button:last-child:hover, .inline-toolbar GtkToolButton:last-child > .button.flat .osd .button:last-child:hover, .osd .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .button:last-child:hover, .osd .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .button:last-child:hover, .osd .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .button:last-child:hover, .osd .inline-toolbar GtkToolButton:last-child > .button.flat .button:last-child:hover, +.inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button:last-child:hover, +.inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button:last-child:hover, +.inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button:last-child:hover, +.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button:last-child:hover, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .button:last-child:hover, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .button:last-child:hover, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .button:last-child:hover, +.osd .inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .button:last-child:hover, .linked > GtkComboBox:last-child > .the-button-in-the-combobox .osd .button:last-child:active, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .osd .button:last-child:active, .osd .linked > GtkComboBox:last-child > .the-button-in-the-combobox .button:last-child:active, +.osd .linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .button:last-child:active, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .osd .button:last-child:active, .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .osd .button:last-child:active, .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .osd .button:last-child:active, .inline-toolbar GtkToolButton:last-child > .button.flat .osd .button:last-child:active, .osd .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .button:last-child:active, .osd .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .button:last-child:active, .osd .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .button:last-child:active, .osd .inline-toolbar GtkToolButton:last-child > .button.flat .button:last-child:active, +.inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button:last-child:active, +.inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button:last-child:active, +.inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button:last-child:active, +.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button:last-child:active, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .button:last-child:active, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .button:last-child:active, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .button:last-child:active, +.osd .inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .button:last-child:active, .linked > GtkComboBox:last-child > .the-button-in-the-combobox .osd .button:last-child:checked, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .osd .button:last-child:checked, .osd .linked > GtkComboBox:last-child > .the-button-in-the-combobox .button:last-child:checked, +.osd .linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .button:last-child:checked, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .osd .button:last-child:checked, .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .osd .button:last-child:checked, .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .osd .button:last-child:checked, .inline-toolbar GtkToolButton:last-child > .button.flat .osd .button:last-child:checked, .osd .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .button:last-child:checked, .osd .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .button:last-child:checked, .osd .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .button:last-child:checked, .osd .inline-toolbar GtkToolButton:last-child > .button.flat .button:last-child:checked, +.inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button:last-child:checked, +.inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button:last-child:checked, +.inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button:last-child:checked, +.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button:last-child:checked, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .button:last-child:checked, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .button:last-child:checked, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .button:last-child:checked, +.osd .inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .button:last-child:checked, .linked > GtkComboBox:last-child > .the-button-in-the-combobox .osd .button:last-child:backdrop:active, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .osd .button:last-child:backdrop:active, .osd .linked > GtkComboBox:last-child > .the-button-in-the-combobox .button:last-child:backdrop:active, +.osd .linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .button:last-child:backdrop:active, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .osd .button:last-child:backdrop:active, .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .osd .button:last-child:backdrop:active, .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .osd .button:last-child:backdrop:active, .inline-toolbar GtkToolButton:last-child > .button.flat .osd .button:last-child:backdrop:active, .osd .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .button:last-child:backdrop:active, .osd .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .button:last-child:backdrop:active, .osd .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .button:last-child:backdrop:active, .osd .inline-toolbar GtkToolButton:last-child > .button.flat .button:last-child:backdrop:active, +.inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button:last-child:backdrop:active, +.inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button:last-child:backdrop:active, +.inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button:last-child:backdrop:active, +.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button:last-child:backdrop:active, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .button:last-child:backdrop:active, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .button:last-child:backdrop:active, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .button:last-child:backdrop:active, +.osd .inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .button:last-child:backdrop:active, .linked > GtkComboBox:last-child > .the-button-in-the-combobox .osd .button:last-child:backdrop:checked, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .osd .button:last-child:backdrop:checked, .osd .linked > GtkComboBox:last-child > .the-button-in-the-combobox .button:last-child:backdrop:checked, +.osd .linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .button:last-child:backdrop:checked, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .osd .button:last-child:backdrop:checked, .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .osd .button:last-child:backdrop:checked, .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .osd .button:last-child:backdrop:checked, .inline-toolbar GtkToolButton:last-child > .button.flat .osd .button:last-child:backdrop:checked, .osd .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .button:last-child:backdrop:checked, .osd .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .button:last-child:backdrop:checked, .osd .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .button:last-child:backdrop:checked, .osd .inline-toolbar GtkToolButton:last-child > .button.flat .button:last-child:backdrop:checked, +.inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button:last-child:backdrop:checked, +.inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button:last-child:backdrop:checked, +.inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button:last-child:backdrop:checked, +.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button:last-child:backdrop:checked, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .button:last-child:backdrop:checked, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .button:last-child:backdrop:checked, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .button:last-child:backdrop:checked, +.osd .inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .button:last-child:backdrop:checked, .linked > GtkComboBox:last-child > .the-button-in-the-combobox .osd .button:last-child:insensitive, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .osd .button:last-child:insensitive, .osd .linked > GtkComboBox:last-child > .the-button-in-the-combobox .button:last-child:insensitive, +.osd .linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .button:last-child:insensitive, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .osd .button:last-child:insensitive, .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .osd .button:last-child:insensitive, .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .osd .button:last-child:insensitive, .inline-toolbar GtkToolButton:last-child > .button.flat .osd .button:last-child:insensitive, .osd .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .button:last-child:insensitive, .osd .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .button:last-child:insensitive, .osd .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .button:last-child:insensitive, .osd .inline-toolbar GtkToolButton:last-child > .button.flat .button:last-child:insensitive, +.inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button:last-child:insensitive, +.inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button:last-child:insensitive, +.inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button:last-child:insensitive, +.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button:last-child:insensitive, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .button:last-child:insensitive, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .button:last-child:insensitive, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .button:last-child:insensitive, +.osd .inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .button:last-child:insensitive, .linked > GtkComboBox:last-child > .the-button-in-the-combobox .osd .button:last-child:backdrop:insensitive, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .osd .button:last-child:backdrop:insensitive, .osd .linked > GtkComboBox:last-child > .the-button-in-the-combobox .button:last-child:backdrop:insensitive, +.osd .linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .button:last-child:backdrop:insensitive, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .osd .button:last-child:backdrop:insensitive, .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .osd .button:last-child:backdrop:insensitive, .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .osd .button:last-child:backdrop:insensitive, .inline-toolbar GtkToolButton:last-child > .button.flat .osd .button:last-child:backdrop:insensitive, .osd .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .button:last-child:backdrop:insensitive, .osd .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .button:last-child:backdrop:insensitive, .osd .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .button:last-child:backdrop:insensitive, .osd .inline-toolbar GtkToolButton:last-child > .button.flat .button:last-child:backdrop:insensitive, +.inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button:last-child:backdrop:insensitive, +.inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button:last-child:backdrop:insensitive, +.inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button:last-child:backdrop:insensitive, +.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button:last-child:backdrop:insensitive, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .button:last-child:backdrop:insensitive, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .button:last-child:backdrop:insensitive, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .button:last-child:backdrop:insensitive, +.osd .inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .button:last-child:backdrop:insensitive, .linked > GtkComboBox:last-child > .the-button-in-the-combobox .osd .button:last-child:backdrop, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .osd .button:last-child:backdrop, .osd .linked > GtkComboBox:last-child > .the-button-in-the-combobox .button:last-child:backdrop, +.osd .linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .button:last-child:backdrop, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .osd .button:last-child:backdrop, .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .osd .button:last-child:backdrop, .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .osd .button:last-child:backdrop, .inline-toolbar GtkToolButton:last-child > .button.flat .osd .button:last-child:backdrop, .osd .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .button:last-child:backdrop, .osd .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .button:last-child:backdrop, .osd .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .button:last-child:backdrop, .osd .inline-toolbar GtkToolButton:last-child > .button.flat .button:last-child:backdrop, +.inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button:last-child:backdrop, +.inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button:last-child:backdrop, +.inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button:last-child:backdrop, +.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button:last-child:backdrop, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .button:last-child:backdrop, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .button:last-child:backdrop, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .button:last-child:backdrop, +.osd .inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .button:last-child:backdrop, .linked > GtkComboBox:last-child > .the-button-in-the-combobox .osd .button.suggested-action:last-child, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .osd .button.suggested-action:last-child, .osd .linked > GtkComboBox:last-child > .the-button-in-the-combobox .button.suggested-action:last-child, +.osd .linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .button.suggested-action:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .osd .button.suggested-action:last-child, .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .osd .button.suggested-action:last-child, .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .osd .button.suggested-action:last-child, .inline-toolbar GtkToolButton:last-child > .button.flat .osd .button.suggested-action:last-child, .osd .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .button.suggested-action:last-child, .osd .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .button.suggested-action:last-child, .osd .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .button.suggested-action:last-child, .osd .inline-toolbar GtkToolButton:last-child > .button.flat .button.suggested-action:last-child, +.inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button.suggested-action:last-child, +.inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button.suggested-action:last-child, +.inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button.suggested-action:last-child, +.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button.suggested-action:last-child, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .button.suggested-action:last-child, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .button.suggested-action:last-child, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .button.suggested-action:last-child, +.osd .inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .button.suggested-action:last-child, .linked > GtkComboBox:last-child > .the-button-in-the-combobox .osd .button.suggested-action:last-child:hover, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .osd .button.suggested-action:last-child:hover, .osd .linked > GtkComboBox:last-child > .the-button-in-the-combobox .button.suggested-action:last-child:hover, +.osd .linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .button.suggested-action:last-child:hover, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .osd .button.suggested-action:last-child:hover, .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .osd .button.suggested-action:last-child:hover, .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .osd .button.suggested-action:last-child:hover, .inline-toolbar GtkToolButton:last-child > .button.flat .osd .button.suggested-action:last-child:hover, .osd .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .button.suggested-action:last-child:hover, .osd .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .button.suggested-action:last-child:hover, .osd .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .button.suggested-action:last-child:hover, .osd .inline-toolbar GtkToolButton:last-child > .button.flat .button.suggested-action:last-child:hover, +.inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button.suggested-action:last-child:hover, +.inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button.suggested-action:last-child:hover, +.inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button.suggested-action:last-child:hover, +.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button.suggested-action:last-child:hover, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .button.suggested-action:last-child:hover, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .button.suggested-action:last-child:hover, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .button.suggested-action:last-child:hover, +.osd .inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .button.suggested-action:last-child:hover, .linked > GtkComboBox:last-child > .the-button-in-the-combobox .osd .button.suggested-action:last-child:active, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .osd .button.suggested-action:last-child:active, .osd .linked > GtkComboBox:last-child > .the-button-in-the-combobox .button.suggested-action:last-child:active, +.osd .linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .button.suggested-action:last-child:active, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .osd .button.suggested-action:last-child:active, .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .osd .button.suggested-action:last-child:active, .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .osd .button.suggested-action:last-child:active, .inline-toolbar GtkToolButton:last-child > .button.flat .osd .button.suggested-action:last-child:active, .osd .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .button.suggested-action:last-child:active, .osd .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .button.suggested-action:last-child:active, .osd .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .button.suggested-action:last-child:active, .osd .inline-toolbar GtkToolButton:last-child > .button.flat .button.suggested-action:last-child:active, +.inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button.suggested-action:last-child:active, +.inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button.suggested-action:last-child:active, +.inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button.suggested-action:last-child:active, +.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button.suggested-action:last-child:active, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .button.suggested-action:last-child:active, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .button.suggested-action:last-child:active, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .button.suggested-action:last-child:active, +.osd .inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .button.suggested-action:last-child:active, .linked > GtkComboBox:last-child > .the-button-in-the-combobox .osd .button.suggested-action:last-child:checked, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .osd .button.suggested-action:last-child:checked, .osd .linked > GtkComboBox:last-child > .the-button-in-the-combobox .button.suggested-action:last-child:checked, +.osd .linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .button.suggested-action:last-child:checked, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .osd .button.suggested-action:last-child:checked, .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .osd .button.suggested-action:last-child:checked, .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .osd .button.suggested-action:last-child:checked, .inline-toolbar GtkToolButton:last-child > .button.flat .osd .button.suggested-action:last-child:checked, .osd .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .button.suggested-action:last-child:checked, .osd .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .button.suggested-action:last-child:checked, .osd .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .button.suggested-action:last-child:checked, .osd .inline-toolbar GtkToolButton:last-child > .button.flat .button.suggested-action:last-child:checked, +.inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button.suggested-action:last-child:checked, +.inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button.suggested-action:last-child:checked, +.inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button.suggested-action:last-child:checked, +.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button.suggested-action:last-child:checked, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .button.suggested-action:last-child:checked, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .button.suggested-action:last-child:checked, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .button.suggested-action:last-child:checked, +.osd .inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .button.suggested-action:last-child:checked, .linked > GtkComboBox:last-child > .the-button-in-the-combobox .osd .button.suggested-action:last-child:backdrop:active, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .osd .button.suggested-action:last-child:backdrop:active, .osd .linked > GtkComboBox:last-child > .the-button-in-the-combobox .button.suggested-action:last-child:backdrop:active, +.osd .linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .button.suggested-action:last-child:backdrop:active, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .osd .button.suggested-action:last-child:backdrop:active, .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .osd .button.suggested-action:last-child:backdrop:active, .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .osd .button.suggested-action:last-child:backdrop:active, .inline-toolbar GtkToolButton:last-child > .button.flat .osd .button.suggested-action:last-child:backdrop:active, .osd .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .button.suggested-action:last-child:backdrop:active, .osd .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .button.suggested-action:last-child:backdrop:active, .osd .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .button.suggested-action:last-child:backdrop:active, .osd .inline-toolbar GtkToolButton:last-child > .button.flat .button.suggested-action:last-child:backdrop:active, +.inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button.suggested-action:last-child:backdrop:active, +.inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button.suggested-action:last-child:backdrop:active, +.inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button.suggested-action:last-child:backdrop:active, +.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button.suggested-action:last-child:backdrop:active, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .button.suggested-action:last-child:backdrop:active, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .button.suggested-action:last-child:backdrop:active, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .button.suggested-action:last-child:backdrop:active, +.osd .inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .button.suggested-action:last-child:backdrop:active, .linked > GtkComboBox:last-child > .the-button-in-the-combobox .osd .button.suggested-action:last-child:backdrop:checked, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .osd .button.suggested-action:last-child:backdrop:checked, .osd .linked > GtkComboBox:last-child > .the-button-in-the-combobox .button.suggested-action:last-child:backdrop:checked, +.osd .linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .button.suggested-action:last-child:backdrop:checked, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .osd .button.suggested-action:last-child:backdrop:checked, .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .osd .button.suggested-action:last-child:backdrop:checked, .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .osd .button.suggested-action:last-child:backdrop:checked, .inline-toolbar GtkToolButton:last-child > .button.flat .osd .button.suggested-action:last-child:backdrop:checked, .osd .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .button.suggested-action:last-child:backdrop:checked, .osd .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .button.suggested-action:last-child:backdrop:checked, .osd .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .button.suggested-action:last-child:backdrop:checked, .osd .inline-toolbar GtkToolButton:last-child > .button.flat .button.suggested-action:last-child:backdrop:checked, +.inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button.suggested-action:last-child:backdrop:checked, +.inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button.suggested-action:last-child:backdrop:checked, +.inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button.suggested-action:last-child:backdrop:checked, +.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button.suggested-action:last-child:backdrop:checked, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .button.suggested-action:last-child:backdrop:checked, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .button.suggested-action:last-child:backdrop:checked, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .button.suggested-action:last-child:backdrop:checked, +.osd .inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .button.suggested-action:last-child:backdrop:checked, .linked > GtkComboBox:last-child > .the-button-in-the-combobox .osd .button.suggested-action:last-child:insensitive, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .osd .button.suggested-action:last-child:insensitive, .osd .linked > GtkComboBox:last-child > .the-button-in-the-combobox .button.suggested-action:last-child:insensitive, +.osd .linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .button.suggested-action:last-child:insensitive, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .osd .button.suggested-action:last-child:insensitive, .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .osd .button.suggested-action:last-child:insensitive, .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .osd .button.suggested-action:last-child:insensitive, .inline-toolbar GtkToolButton:last-child > .button.flat .osd .button.suggested-action:last-child:insensitive, .osd .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .button.suggested-action:last-child:insensitive, .osd .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .button.suggested-action:last-child:insensitive, .osd .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .button.suggested-action:last-child:insensitive, .osd .inline-toolbar GtkToolButton:last-child > .button.flat .button.suggested-action:last-child:insensitive, +.inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button.suggested-action:last-child:insensitive, +.inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button.suggested-action:last-child:insensitive, +.inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button.suggested-action:last-child:insensitive, +.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button.suggested-action:last-child:insensitive, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .button.suggested-action:last-child:insensitive, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .button.suggested-action:last-child:insensitive, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .button.suggested-action:last-child:insensitive, +.osd .inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .button.suggested-action:last-child:insensitive, .linked > GtkComboBox:last-child > .the-button-in-the-combobox .osd .button.suggested-action:last-child:backdrop:insensitive, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .osd .button.suggested-action:last-child:backdrop:insensitive, .osd .linked > GtkComboBox:last-child > .the-button-in-the-combobox .button.suggested-action:last-child:backdrop:insensitive, +.osd .linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .button.suggested-action:last-child:backdrop:insensitive, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .osd .button.suggested-action:last-child:backdrop:insensitive, .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .osd .button.suggested-action:last-child:backdrop:insensitive, .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .osd .button.suggested-action:last-child:backdrop:insensitive, .inline-toolbar GtkToolButton:last-child > .button.flat .osd .button.suggested-action:last-child:backdrop:insensitive, .osd .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .button.suggested-action:last-child:backdrop:insensitive, .osd .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .button.suggested-action:last-child:backdrop:insensitive, .osd .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .button.suggested-action:last-child:backdrop:insensitive, .osd .inline-toolbar GtkToolButton:last-child > .button.flat .button.suggested-action:last-child:backdrop:insensitive, +.inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button.suggested-action:last-child:backdrop:insensitive, +.inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button.suggested-action:last-child:backdrop:insensitive, +.inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button.suggested-action:last-child:backdrop:insensitive, +.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button.suggested-action:last-child:backdrop:insensitive, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .button.suggested-action:last-child:backdrop:insensitive, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .button.suggested-action:last-child:backdrop:insensitive, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .button.suggested-action:last-child:backdrop:insensitive, +.osd .inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .button.suggested-action:last-child:backdrop:insensitive, .linked > GtkComboBox:last-child > .the-button-in-the-combobox .osd .button.suggested-action:last-child:backdrop, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .osd .button.suggested-action:last-child:backdrop, .osd .linked > GtkComboBox:last-child > .the-button-in-the-combobox .button.suggested-action:last-child:backdrop, +.osd .linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .button.suggested-action:last-child:backdrop, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .osd .button.suggested-action:last-child:backdrop, .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .osd .button.suggested-action:last-child:backdrop, .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .osd .button.suggested-action:last-child:backdrop, .inline-toolbar GtkToolButton:last-child > .button.flat .osd .button.suggested-action:last-child:backdrop, .osd .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .button.suggested-action:last-child:backdrop, .osd .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .button.suggested-action:last-child:backdrop, .osd .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .button.suggested-action:last-child:backdrop, .osd .inline-toolbar GtkToolButton:last-child > .button.flat .button.suggested-action:last-child:backdrop, +.inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button.suggested-action:last-child:backdrop, +.inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button.suggested-action:last-child:backdrop, +.inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button.suggested-action:last-child:backdrop, +.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button.suggested-action:last-child:backdrop, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .button.suggested-action:last-child:backdrop, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .button.suggested-action:last-child:backdrop, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .button.suggested-action:last-child:backdrop, +.osd .inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .button.suggested-action:last-child:backdrop, .linked > GtkComboBox:last-child > .the-button-in-the-combobox .osd .button.destructive-action:last-child, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .osd .button.destructive-action:last-child, .osd .linked > GtkComboBox:last-child > .the-button-in-the-combobox .button.destructive-action:last-child, +.osd .linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .button.destructive-action:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .osd .button.destructive-action:last-child, .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .osd .button.destructive-action:last-child, .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .osd .button.destructive-action:last-child, .inline-toolbar GtkToolButton:last-child > .button.flat .osd .button.destructive-action:last-child, .osd .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .button.destructive-action:last-child, .osd .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .button.destructive-action:last-child, .osd .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .button.destructive-action:last-child, .osd .inline-toolbar GtkToolButton:last-child > .button.flat .button.destructive-action:last-child, +.inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button.destructive-action:last-child, +.inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button.destructive-action:last-child, +.inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button.destructive-action:last-child, +.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button.destructive-action:last-child, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .button.destructive-action:last-child, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .button.destructive-action:last-child, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .button.destructive-action:last-child, +.osd .inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .button.destructive-action:last-child, .linked > GtkComboBox:last-child > .the-button-in-the-combobox .osd .button.destructive-action:last-child:hover, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .osd .button.destructive-action:last-child:hover, .osd .linked > GtkComboBox:last-child > .the-button-in-the-combobox .button.destructive-action:last-child:hover, +.osd .linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .button.destructive-action:last-child:hover, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .osd .button.destructive-action:last-child:hover, .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .osd .button.destructive-action:last-child:hover, .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .osd .button.destructive-action:last-child:hover, .inline-toolbar GtkToolButton:last-child > .button.flat .osd .button.destructive-action:last-child:hover, .osd .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .button.destructive-action:last-child:hover, .osd .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .button.destructive-action:last-child:hover, .osd .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .button.destructive-action:last-child:hover, .osd .inline-toolbar GtkToolButton:last-child > .button.flat .button.destructive-action:last-child:hover, +.inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button.destructive-action:last-child:hover, +.inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button.destructive-action:last-child:hover, +.inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button.destructive-action:last-child:hover, +.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button.destructive-action:last-child:hover, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .button.destructive-action:last-child:hover, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .button.destructive-action:last-child:hover, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .button.destructive-action:last-child:hover, +.osd .inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .button.destructive-action:last-child:hover, .linked > GtkComboBox:last-child > .the-button-in-the-combobox .osd .button.destructive-action:last-child:active, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .osd .button.destructive-action:last-child:active, .osd .linked > GtkComboBox:last-child > .the-button-in-the-combobox .button.destructive-action:last-child:active, +.osd .linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .button.destructive-action:last-child:active, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .osd .button.destructive-action:last-child:active, .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .osd .button.destructive-action:last-child:active, .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .osd .button.destructive-action:last-child:active, .inline-toolbar GtkToolButton:last-child > .button.flat .osd .button.destructive-action:last-child:active, .osd .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .button.destructive-action:last-child:active, .osd .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .button.destructive-action:last-child:active, .osd .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .button.destructive-action:last-child:active, .osd .inline-toolbar GtkToolButton:last-child > .button.flat .button.destructive-action:last-child:active, +.inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button.destructive-action:last-child:active, +.inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button.destructive-action:last-child:active, +.inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button.destructive-action:last-child:active, +.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button.destructive-action:last-child:active, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .button.destructive-action:last-child:active, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .button.destructive-action:last-child:active, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .button.destructive-action:last-child:active, +.osd .inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .button.destructive-action:last-child:active, .linked > GtkComboBox:last-child > .the-button-in-the-combobox .osd .button.destructive-action:last-child:checked, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .osd .button.destructive-action:last-child:checked, .osd .linked > GtkComboBox:last-child > .the-button-in-the-combobox .button.destructive-action:last-child:checked, +.osd .linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .button.destructive-action:last-child:checked, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .osd .button.destructive-action:last-child:checked, .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .osd .button.destructive-action:last-child:checked, .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .osd .button.destructive-action:last-child:checked, .inline-toolbar GtkToolButton:last-child > .button.flat .osd .button.destructive-action:last-child:checked, .osd .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .button.destructive-action:last-child:checked, .osd .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .button.destructive-action:last-child:checked, .osd .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .button.destructive-action:last-child:checked, .osd .inline-toolbar GtkToolButton:last-child > .button.flat .button.destructive-action:last-child:checked, +.inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button.destructive-action:last-child:checked, +.inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button.destructive-action:last-child:checked, +.inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button.destructive-action:last-child:checked, +.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button.destructive-action:last-child:checked, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .button.destructive-action:last-child:checked, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .button.destructive-action:last-child:checked, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .button.destructive-action:last-child:checked, +.osd .inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .button.destructive-action:last-child:checked, .linked > GtkComboBox:last-child > .the-button-in-the-combobox .osd .button.destructive-action:last-child:backdrop:active, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .osd .button.destructive-action:last-child:backdrop:active, .osd .linked > GtkComboBox:last-child > .the-button-in-the-combobox .button.destructive-action:last-child:backdrop:active, +.osd .linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .button.destructive-action:last-child:backdrop:active, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .osd .button.destructive-action:last-child:backdrop:active, .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .osd .button.destructive-action:last-child:backdrop:active, .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .osd .button.destructive-action:last-child:backdrop:active, .inline-toolbar GtkToolButton:last-child > .button.flat .osd .button.destructive-action:last-child:backdrop:active, .osd .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .button.destructive-action:last-child:backdrop:active, .osd .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .button.destructive-action:last-child:backdrop:active, .osd .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .button.destructive-action:last-child:backdrop:active, .osd .inline-toolbar GtkToolButton:last-child > .button.flat .button.destructive-action:last-child:backdrop:active, +.inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button.destructive-action:last-child:backdrop:active, +.inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button.destructive-action:last-child:backdrop:active, +.inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button.destructive-action:last-child:backdrop:active, +.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button.destructive-action:last-child:backdrop:active, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .button.destructive-action:last-child:backdrop:active, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .button.destructive-action:last-child:backdrop:active, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .button.destructive-action:last-child:backdrop:active, +.osd .inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .button.destructive-action:last-child:backdrop:active, .linked > GtkComboBox:last-child > .the-button-in-the-combobox .osd .button.destructive-action:last-child:backdrop:checked, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .osd .button.destructive-action:last-child:backdrop:checked, .osd .linked > GtkComboBox:last-child > .the-button-in-the-combobox .button.destructive-action:last-child:backdrop:checked, +.osd .linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .button.destructive-action:last-child:backdrop:checked, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .osd .button.destructive-action:last-child:backdrop:checked, .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .osd .button.destructive-action:last-child:backdrop:checked, .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .osd .button.destructive-action:last-child:backdrop:checked, .inline-toolbar GtkToolButton:last-child > .button.flat .osd .button.destructive-action:last-child:backdrop:checked, .osd .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .button.destructive-action:last-child:backdrop:checked, .osd .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .button.destructive-action:last-child:backdrop:checked, .osd .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .button.destructive-action:last-child:backdrop:checked, .osd .inline-toolbar GtkToolButton:last-child > .button.flat .button.destructive-action:last-child:backdrop:checked, +.inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button.destructive-action:last-child:backdrop:checked, +.inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button.destructive-action:last-child:backdrop:checked, +.inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button.destructive-action:last-child:backdrop:checked, +.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button.destructive-action:last-child:backdrop:checked, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .button.destructive-action:last-child:backdrop:checked, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .button.destructive-action:last-child:backdrop:checked, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .button.destructive-action:last-child:backdrop:checked, +.osd .inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .button.destructive-action:last-child:backdrop:checked, .linked > GtkComboBox:last-child > .the-button-in-the-combobox .osd .button.destructive-action:last-child:insensitive, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .osd .button.destructive-action:last-child:insensitive, .osd .linked > GtkComboBox:last-child > .the-button-in-the-combobox .button.destructive-action:last-child:insensitive, +.osd .linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .button.destructive-action:last-child:insensitive, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .osd .button.destructive-action:last-child:insensitive, .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .osd .button.destructive-action:last-child:insensitive, .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .osd .button.destructive-action:last-child:insensitive, .inline-toolbar GtkToolButton:last-child > .button.flat .osd .button.destructive-action:last-child:insensitive, .osd .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .button.destructive-action:last-child:insensitive, .osd .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .button.destructive-action:last-child:insensitive, .osd .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .button.destructive-action:last-child:insensitive, .osd .inline-toolbar GtkToolButton:last-child > .button.flat .button.destructive-action:last-child:insensitive, +.inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button.destructive-action:last-child:insensitive, +.inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button.destructive-action:last-child:insensitive, +.inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button.destructive-action:last-child:insensitive, +.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button.destructive-action:last-child:insensitive, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .button.destructive-action:last-child:insensitive, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .button.destructive-action:last-child:insensitive, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .button.destructive-action:last-child:insensitive, +.osd .inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .button.destructive-action:last-child:insensitive, .linked > GtkComboBox:last-child > .the-button-in-the-combobox .osd .button.destructive-action:last-child:backdrop:insensitive, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .osd .button.destructive-action:last-child:backdrop:insensitive, .osd .linked > GtkComboBox:last-child > .the-button-in-the-combobox .button.destructive-action:last-child:backdrop:insensitive, +.osd .linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .button.destructive-action:last-child:backdrop:insensitive, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .osd .button.destructive-action:last-child:backdrop:insensitive, .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .osd .button.destructive-action:last-child:backdrop:insensitive, .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .osd .button.destructive-action:last-child:backdrop:insensitive, .inline-toolbar GtkToolButton:last-child > .button.flat .osd .button.destructive-action:last-child:backdrop:insensitive, .osd .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .button.destructive-action:last-child:backdrop:insensitive, .osd .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .button.destructive-action:last-child:backdrop:insensitive, .osd .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .button.destructive-action:last-child:backdrop:insensitive, .osd .inline-toolbar GtkToolButton:last-child > .button.flat .button.destructive-action:last-child:backdrop:insensitive, +.inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button.destructive-action:last-child:backdrop:insensitive, +.inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button.destructive-action:last-child:backdrop:insensitive, +.inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button.destructive-action:last-child:backdrop:insensitive, +.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button.destructive-action:last-child:backdrop:insensitive, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .button.destructive-action:last-child:backdrop:insensitive, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .button.destructive-action:last-child:backdrop:insensitive, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .button.destructive-action:last-child:backdrop:insensitive, +.osd .inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .button.destructive-action:last-child:backdrop:insensitive, .linked > GtkComboBox:last-child > .the-button-in-the-combobox .osd .button.destructive-action:last-child:backdrop, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .osd .button.destructive-action:last-child:backdrop, .osd .linked > GtkComboBox:last-child > .the-button-in-the-combobox .button.destructive-action:last-child:backdrop, +.osd .linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .button.destructive-action:last-child:backdrop, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .osd .button.destructive-action:last-child:backdrop, .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .osd .button.destructive-action:last-child:backdrop, .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .osd .button.destructive-action:last-child:backdrop, .inline-toolbar GtkToolButton:last-child > .button.flat .osd .button.destructive-action:last-child:backdrop, .osd .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .button.destructive-action:last-child:backdrop, .osd .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .button.destructive-action:last-child:backdrop, .osd .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .button.destructive-action:last-child:backdrop, .osd .inline-toolbar GtkToolButton:last-child > .button.flat .button.destructive-action:last-child:backdrop, +.inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button.destructive-action:last-child:backdrop, +.inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button.destructive-action:last-child:backdrop, +.inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .osd .button.destructive-action:last-child:backdrop, +.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .osd .button.destructive-action:last-child:backdrop, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .button.destructive-action:last-child:backdrop, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .button.destructive-action:last-child:backdrop, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .button.destructive-action:last-child:backdrop, +.osd .inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .button.destructive-action:last-child:backdrop, .linked > GtkComboBox:last-child > .the-button-in-the-combobox .inline-toolbar .button:last-child, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .inline-toolbar .button:last-child, .inline-toolbar .linked > GtkComboBox:last-child > .the-button-in-the-combobox .button:last-child, +.inline-toolbar .linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .button:last-child, .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .button:last-child, .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .button:last-child, .inline-toolbar GtkToolButton:last-child > .button.flat .button:last-child, +.inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .button:last-child, +.inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .button:last-child, +.inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .button:last-child, +.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .button:last-child, .linked > GtkComboBox:last-child > .the-button-in-the-combobox .inline-toolbar .button:last-child:backdrop, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .inline-toolbar .button:last-child:backdrop, .inline-toolbar .linked > GtkComboBox:last-child > .the-button-in-the-combobox .button:last-child:backdrop, +.inline-toolbar .linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .button:last-child:backdrop, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .button:last-child:backdrop, .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .button:last-child:backdrop, .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .button:last-child:backdrop, .inline-toolbar GtkToolButton:last-child > .button.flat .button:last-child:backdrop, +.inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .button:last-child:backdrop, +.inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .button:last-child:backdrop, +.inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .button:last-child:backdrop, +.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .button:last-child:backdrop, .linked > GtkComboBox:last-child > .the-button-in-the-combobox .linked > .button:last-child, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .linked > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .linked > .button:last-child, .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .linked > .button:last-child, .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .linked > .button:last-child, .inline-toolbar GtkToolButton:last-child > .button.flat .linked > .button:last-child, +.inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .linked > .button:last-child, +.inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .linked > .button:last-child, +.inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .linked > .button:last-child, +.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .linked > .button:last-child, .linked > GtkComboBox:last-child > .the-button-in-the-combobox .linked > .button:last-child:hover, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .linked > .button:last-child:hover, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .linked > .button:last-child:hover, .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .linked > .button:last-child:hover, .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .linked > .button:last-child:hover, .inline-toolbar GtkToolButton:last-child > .button.flat .linked > .button:last-child:hover, +.inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .linked > .button:last-child:hover, +.inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .linked > .button:last-child:hover, +.inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .linked > .button:last-child:hover, +.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .linked > .button:last-child:hover, .linked > GtkComboBox:last-child > .the-button-in-the-combobox .linked > .button:last-child:active, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .linked > .button:last-child:active, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .linked > .button:last-child:active, .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .linked > .button:last-child:active, .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .linked > .button:last-child:active, .inline-toolbar GtkToolButton:last-child > .button.flat .linked > .button:last-child:active, +.inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .linked > .button:last-child:active, +.inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .linked > .button:last-child:active, +.inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .linked > .button:last-child:active, +.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .linked > .button:last-child:active, .linked > GtkComboBox:last-child > .the-button-in-the-combobox .linked > .button:last-child:checked, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .linked > .button:last-child:checked, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .linked > .button:last-child:checked, .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .linked > .button:last-child:checked, .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .linked > .button:last-child:checked, .inline-toolbar GtkToolButton:last-child > .button.flat .linked > .button:last-child:checked, +.inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .linked > .button:last-child:checked, +.inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .linked > .button:last-child:checked, +.inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .linked > .button:last-child:checked, +.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .linked > .button:last-child:checked, .linked > GtkComboBox:last-child > .the-button-in-the-combobox .linked > .button:last-child:backdrop, +.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox .linked > .button:last-child:backdrop, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat .linked > .button:last-child:backdrop, .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat .linked > .button:last-child:backdrop, .inline-toolbar.location-bar GtkToolButton:last-child > .button.flat .linked > .button:last-child:backdrop, .inline-toolbar GtkToolButton:last-child > .button.flat .linked > .button:last-child:backdrop, +.inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat .linked > .button:last-child:backdrop, +.inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat .linked > .button:last-child:backdrop, +.inline-toolbar.location-bar GtkToolButton:backdrop:last-child > .button.flat .linked > .button:last-child:backdrop, +.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat .linked > .button:last-child:backdrop { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; + border-right-style: solid; } + +.linked > GtkComboBox:only-child > .the-button-in-the-combobox .linked:not(.vertical) > .entry:only-child, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .linked:not(.vertical) > .entry:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .linked:not(.vertical) > .entry:only-child, .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .linked:not(.vertical) > .entry:only-child, .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .linked:not(.vertical) > .entry:only-child, .inline-toolbar GtkToolButton:only-child > .button.flat .linked:not(.vertical) > .entry:only-child, +.inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .linked:not(.vertical) > .entry:only-child, +.inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .linked:not(.vertical) > .entry:only-child, +.inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .linked:not(.vertical) > .entry:only-child, +.inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .linked:not(.vertical) > .entry:only-child, .linked > GtkComboBox:only-child > .the-button-in-the-combobox .osd .button:only-child:hover, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .osd .button:only-child:hover, .osd .linked > GtkComboBox:only-child > .the-button-in-the-combobox .button:only-child:hover, +.osd .linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .button:only-child:hover, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .osd .button:only-child:hover, .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .osd .button:only-child:hover, .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .osd .button:only-child:hover, .inline-toolbar GtkToolButton:only-child > .button.flat .osd .button:only-child:hover, .osd .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .button:only-child:hover, .osd .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .button:only-child:hover, .osd .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .button:only-child:hover, .osd .inline-toolbar GtkToolButton:only-child > .button.flat .button:only-child:hover, +.inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button:only-child:hover, +.inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button:only-child:hover, +.inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button:only-child:hover, +.inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button:only-child:hover, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .button:only-child:hover, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .button:only-child:hover, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .button:only-child:hover, +.osd .inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .button:only-child:hover, .linked > GtkComboBox:only-child > .the-button-in-the-combobox .osd .button:only-child:active, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .osd .button:only-child:active, .osd .linked > GtkComboBox:only-child > .the-button-in-the-combobox .button:only-child:active, +.osd .linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .button:only-child:active, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .osd .button:only-child:active, .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .osd .button:only-child:active, .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .osd .button:only-child:active, .inline-toolbar GtkToolButton:only-child > .button.flat .osd .button:only-child:active, .osd .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .button:only-child:active, .osd .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .button:only-child:active, .osd .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .button:only-child:active, .osd .inline-toolbar GtkToolButton:only-child > .button.flat .button:only-child:active, +.inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button:only-child:active, +.inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button:only-child:active, +.inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button:only-child:active, +.inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button:only-child:active, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .button:only-child:active, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .button:only-child:active, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .button:only-child:active, +.osd .inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .button:only-child:active, .linked > GtkComboBox:only-child > .the-button-in-the-combobox .osd .button:only-child:checked, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .osd .button:only-child:checked, .osd .linked > GtkComboBox:only-child > .the-button-in-the-combobox .button:only-child:checked, +.osd .linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .button:only-child:checked, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .osd .button:only-child:checked, .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .osd .button:only-child:checked, .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .osd .button:only-child:checked, .inline-toolbar GtkToolButton:only-child > .button.flat .osd .button:only-child:checked, .osd .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .button:only-child:checked, .osd .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .button:only-child:checked, .osd .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .button:only-child:checked, .osd .inline-toolbar GtkToolButton:only-child > .button.flat .button:only-child:checked, +.inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button:only-child:checked, +.inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button:only-child:checked, +.inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button:only-child:checked, +.inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button:only-child:checked, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .button:only-child:checked, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .button:only-child:checked, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .button:only-child:checked, +.osd .inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .button:only-child:checked, .linked > GtkComboBox:only-child > .the-button-in-the-combobox .osd .button:only-child:backdrop:active, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .osd .button:only-child:backdrop:active, .osd .linked > GtkComboBox:only-child > .the-button-in-the-combobox .button:only-child:backdrop:active, +.osd .linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .button:only-child:backdrop:active, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .osd .button:only-child:backdrop:active, .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .osd .button:only-child:backdrop:active, .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .osd .button:only-child:backdrop:active, .inline-toolbar GtkToolButton:only-child > .button.flat .osd .button:only-child:backdrop:active, .osd .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .button:only-child:backdrop:active, .osd .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .button:only-child:backdrop:active, .osd .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .button:only-child:backdrop:active, .osd .inline-toolbar GtkToolButton:only-child > .button.flat .button:only-child:backdrop:active, +.inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button:only-child:backdrop:active, +.inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button:only-child:backdrop:active, +.inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button:only-child:backdrop:active, +.inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button:only-child:backdrop:active, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .button:only-child:backdrop:active, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .button:only-child:backdrop:active, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .button:only-child:backdrop:active, +.osd .inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .button:only-child:backdrop:active, .linked > GtkComboBox:only-child > .the-button-in-the-combobox .osd .button:only-child:backdrop:checked, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .osd .button:only-child:backdrop:checked, .osd .linked > GtkComboBox:only-child > .the-button-in-the-combobox .button:only-child:backdrop:checked, +.osd .linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .button:only-child:backdrop:checked, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .osd .button:only-child:backdrop:checked, .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .osd .button:only-child:backdrop:checked, .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .osd .button:only-child:backdrop:checked, .inline-toolbar GtkToolButton:only-child > .button.flat .osd .button:only-child:backdrop:checked, .osd .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .button:only-child:backdrop:checked, .osd .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .button:only-child:backdrop:checked, .osd .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .button:only-child:backdrop:checked, .osd .inline-toolbar GtkToolButton:only-child > .button.flat .button:only-child:backdrop:checked, +.inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button:only-child:backdrop:checked, +.inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button:only-child:backdrop:checked, +.inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button:only-child:backdrop:checked, +.inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button:only-child:backdrop:checked, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .button:only-child:backdrop:checked, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .button:only-child:backdrop:checked, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .button:only-child:backdrop:checked, +.osd .inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .button:only-child:backdrop:checked, .linked > GtkComboBox:only-child > .the-button-in-the-combobox .osd .button:only-child:insensitive, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .osd .button:only-child:insensitive, .osd .linked > GtkComboBox:only-child > .the-button-in-the-combobox .button:only-child:insensitive, +.osd .linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .button:only-child:insensitive, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .osd .button:only-child:insensitive, .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .osd .button:only-child:insensitive, .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .osd .button:only-child:insensitive, .inline-toolbar GtkToolButton:only-child > .button.flat .osd .button:only-child:insensitive, .osd .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .button:only-child:insensitive, .osd .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .button:only-child:insensitive, .osd .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .button:only-child:insensitive, .osd .inline-toolbar GtkToolButton:only-child > .button.flat .button:only-child:insensitive, +.inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button:only-child:insensitive, +.inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button:only-child:insensitive, +.inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button:only-child:insensitive, +.inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button:only-child:insensitive, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .button:only-child:insensitive, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .button:only-child:insensitive, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .button:only-child:insensitive, +.osd .inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .button:only-child:insensitive, .linked > GtkComboBox:only-child > .the-button-in-the-combobox .osd .button:only-child:backdrop:insensitive, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .osd .button:only-child:backdrop:insensitive, .osd .linked > GtkComboBox:only-child > .the-button-in-the-combobox .button:only-child:backdrop:insensitive, +.osd .linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .button:only-child:backdrop:insensitive, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .osd .button:only-child:backdrop:insensitive, .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .osd .button:only-child:backdrop:insensitive, .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .osd .button:only-child:backdrop:insensitive, .inline-toolbar GtkToolButton:only-child > .button.flat .osd .button:only-child:backdrop:insensitive, .osd .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .button:only-child:backdrop:insensitive, .osd .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .button:only-child:backdrop:insensitive, .osd .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .button:only-child:backdrop:insensitive, .osd .inline-toolbar GtkToolButton:only-child > .button.flat .button:only-child:backdrop:insensitive, +.inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button:only-child:backdrop:insensitive, +.inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button:only-child:backdrop:insensitive, +.inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button:only-child:backdrop:insensitive, +.inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button:only-child:backdrop:insensitive, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .button:only-child:backdrop:insensitive, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .button:only-child:backdrop:insensitive, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .button:only-child:backdrop:insensitive, +.osd .inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .button:only-child:backdrop:insensitive, .linked > GtkComboBox:only-child > .the-button-in-the-combobox .osd .button:only-child:backdrop, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .osd .button:only-child:backdrop, .osd .linked > GtkComboBox:only-child > .the-button-in-the-combobox .button:only-child:backdrop, +.osd .linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .button:only-child:backdrop, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .osd .button:only-child:backdrop, .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .osd .button:only-child:backdrop, .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .osd .button:only-child:backdrop, .inline-toolbar GtkToolButton:only-child > .button.flat .osd .button:only-child:backdrop, .osd .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .button:only-child:backdrop, .osd .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .button:only-child:backdrop, .osd .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .button:only-child:backdrop, .osd .inline-toolbar GtkToolButton:only-child > .button.flat .button:only-child:backdrop, +.inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button:only-child:backdrop, +.inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button:only-child:backdrop, +.inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button:only-child:backdrop, +.inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button:only-child:backdrop, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .button:only-child:backdrop, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .button:only-child:backdrop, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .button:only-child:backdrop, +.osd .inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .button:only-child:backdrop, .linked > GtkComboBox:only-child > .the-button-in-the-combobox .osd .button.suggested-action:only-child, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .osd .button.suggested-action:only-child, .osd .linked > GtkComboBox:only-child > .the-button-in-the-combobox .button.suggested-action:only-child, +.osd .linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .button.suggested-action:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .osd .button.suggested-action:only-child, .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .osd .button.suggested-action:only-child, .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .osd .button.suggested-action:only-child, .inline-toolbar GtkToolButton:only-child > .button.flat .osd .button.suggested-action:only-child, .osd .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .button.suggested-action:only-child, .osd .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .button.suggested-action:only-child, .osd .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .button.suggested-action:only-child, .osd .inline-toolbar GtkToolButton:only-child > .button.flat .button.suggested-action:only-child, +.inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button.suggested-action:only-child, +.inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button.suggested-action:only-child, +.inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button.suggested-action:only-child, +.inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button.suggested-action:only-child, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .button.suggested-action:only-child, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .button.suggested-action:only-child, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .button.suggested-action:only-child, +.osd .inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .button.suggested-action:only-child, .linked > GtkComboBox:only-child > .the-button-in-the-combobox .osd .button.suggested-action:only-child:hover, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .osd .button.suggested-action:only-child:hover, .osd .linked > GtkComboBox:only-child > .the-button-in-the-combobox .button.suggested-action:only-child:hover, +.osd .linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .button.suggested-action:only-child:hover, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .osd .button.suggested-action:only-child:hover, .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .osd .button.suggested-action:only-child:hover, .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .osd .button.suggested-action:only-child:hover, .inline-toolbar GtkToolButton:only-child > .button.flat .osd .button.suggested-action:only-child:hover, .osd .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .button.suggested-action:only-child:hover, .osd .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .button.suggested-action:only-child:hover, .osd .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .button.suggested-action:only-child:hover, .osd .inline-toolbar GtkToolButton:only-child > .button.flat .button.suggested-action:only-child:hover, +.inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button.suggested-action:only-child:hover, +.inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button.suggested-action:only-child:hover, +.inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button.suggested-action:only-child:hover, +.inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button.suggested-action:only-child:hover, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .button.suggested-action:only-child:hover, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .button.suggested-action:only-child:hover, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .button.suggested-action:only-child:hover, +.osd .inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .button.suggested-action:only-child:hover, .linked > GtkComboBox:only-child > .the-button-in-the-combobox .osd .button.suggested-action:only-child:active, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .osd .button.suggested-action:only-child:active, .osd .linked > GtkComboBox:only-child > .the-button-in-the-combobox .button.suggested-action:only-child:active, +.osd .linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .button.suggested-action:only-child:active, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .osd .button.suggested-action:only-child:active, .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .osd .button.suggested-action:only-child:active, .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .osd .button.suggested-action:only-child:active, .inline-toolbar GtkToolButton:only-child > .button.flat .osd .button.suggested-action:only-child:active, .osd .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .button.suggested-action:only-child:active, .osd .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .button.suggested-action:only-child:active, .osd .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .button.suggested-action:only-child:active, .osd .inline-toolbar GtkToolButton:only-child > .button.flat .button.suggested-action:only-child:active, +.inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button.suggested-action:only-child:active, +.inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button.suggested-action:only-child:active, +.inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button.suggested-action:only-child:active, +.inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button.suggested-action:only-child:active, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .button.suggested-action:only-child:active, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .button.suggested-action:only-child:active, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .button.suggested-action:only-child:active, +.osd .inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .button.suggested-action:only-child:active, .linked > GtkComboBox:only-child > .the-button-in-the-combobox .osd .button.suggested-action:only-child:checked, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .osd .button.suggested-action:only-child:checked, .osd .linked > GtkComboBox:only-child > .the-button-in-the-combobox .button.suggested-action:only-child:checked, +.osd .linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .button.suggested-action:only-child:checked, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .osd .button.suggested-action:only-child:checked, .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .osd .button.suggested-action:only-child:checked, .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .osd .button.suggested-action:only-child:checked, .inline-toolbar GtkToolButton:only-child > .button.flat .osd .button.suggested-action:only-child:checked, .osd .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .button.suggested-action:only-child:checked, .osd .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .button.suggested-action:only-child:checked, .osd .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .button.suggested-action:only-child:checked, .osd .inline-toolbar GtkToolButton:only-child > .button.flat .button.suggested-action:only-child:checked, +.inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button.suggested-action:only-child:checked, +.inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button.suggested-action:only-child:checked, +.inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button.suggested-action:only-child:checked, +.inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button.suggested-action:only-child:checked, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .button.suggested-action:only-child:checked, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .button.suggested-action:only-child:checked, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .button.suggested-action:only-child:checked, +.osd .inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .button.suggested-action:only-child:checked, .linked > GtkComboBox:only-child > .the-button-in-the-combobox .osd .button.suggested-action:only-child:backdrop:active, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .osd .button.suggested-action:only-child:backdrop:active, .osd .linked > GtkComboBox:only-child > .the-button-in-the-combobox .button.suggested-action:only-child:backdrop:active, +.osd .linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .button.suggested-action:only-child:backdrop:active, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .osd .button.suggested-action:only-child:backdrop:active, .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .osd .button.suggested-action:only-child:backdrop:active, .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .osd .button.suggested-action:only-child:backdrop:active, .inline-toolbar GtkToolButton:only-child > .button.flat .osd .button.suggested-action:only-child:backdrop:active, .osd .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .button.suggested-action:only-child:backdrop:active, .osd .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .button.suggested-action:only-child:backdrop:active, .osd .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .button.suggested-action:only-child:backdrop:active, .osd .inline-toolbar GtkToolButton:only-child > .button.flat .button.suggested-action:only-child:backdrop:active, +.inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button.suggested-action:only-child:backdrop:active, +.inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button.suggested-action:only-child:backdrop:active, +.inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button.suggested-action:only-child:backdrop:active, +.inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button.suggested-action:only-child:backdrop:active, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .button.suggested-action:only-child:backdrop:active, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .button.suggested-action:only-child:backdrop:active, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .button.suggested-action:only-child:backdrop:active, +.osd .inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .button.suggested-action:only-child:backdrop:active, .linked > GtkComboBox:only-child > .the-button-in-the-combobox .osd .button.suggested-action:only-child:backdrop:checked, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .osd .button.suggested-action:only-child:backdrop:checked, .osd .linked > GtkComboBox:only-child > .the-button-in-the-combobox .button.suggested-action:only-child:backdrop:checked, +.osd .linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .button.suggested-action:only-child:backdrop:checked, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .osd .button.suggested-action:only-child:backdrop:checked, .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .osd .button.suggested-action:only-child:backdrop:checked, .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .osd .button.suggested-action:only-child:backdrop:checked, .inline-toolbar GtkToolButton:only-child > .button.flat .osd .button.suggested-action:only-child:backdrop:checked, .osd .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .button.suggested-action:only-child:backdrop:checked, .osd .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .button.suggested-action:only-child:backdrop:checked, .osd .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .button.suggested-action:only-child:backdrop:checked, .osd .inline-toolbar GtkToolButton:only-child > .button.flat .button.suggested-action:only-child:backdrop:checked, +.inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button.suggested-action:only-child:backdrop:checked, +.inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button.suggested-action:only-child:backdrop:checked, +.inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button.suggested-action:only-child:backdrop:checked, +.inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button.suggested-action:only-child:backdrop:checked, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .button.suggested-action:only-child:backdrop:checked, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .button.suggested-action:only-child:backdrop:checked, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .button.suggested-action:only-child:backdrop:checked, +.osd .inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .button.suggested-action:only-child:backdrop:checked, .linked > GtkComboBox:only-child > .the-button-in-the-combobox .osd .button.suggested-action:only-child:insensitive, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .osd .button.suggested-action:only-child:insensitive, .osd .linked > GtkComboBox:only-child > .the-button-in-the-combobox .button.suggested-action:only-child:insensitive, +.osd .linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .button.suggested-action:only-child:insensitive, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .osd .button.suggested-action:only-child:insensitive, .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .osd .button.suggested-action:only-child:insensitive, .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .osd .button.suggested-action:only-child:insensitive, .inline-toolbar GtkToolButton:only-child > .button.flat .osd .button.suggested-action:only-child:insensitive, .osd .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .button.suggested-action:only-child:insensitive, .osd .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .button.suggested-action:only-child:insensitive, .osd .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .button.suggested-action:only-child:insensitive, .osd .inline-toolbar GtkToolButton:only-child > .button.flat .button.suggested-action:only-child:insensitive, +.inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button.suggested-action:only-child:insensitive, +.inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button.suggested-action:only-child:insensitive, +.inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button.suggested-action:only-child:insensitive, +.inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button.suggested-action:only-child:insensitive, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .button.suggested-action:only-child:insensitive, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .button.suggested-action:only-child:insensitive, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .button.suggested-action:only-child:insensitive, +.osd .inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .button.suggested-action:only-child:insensitive, .linked > GtkComboBox:only-child > .the-button-in-the-combobox .osd .button.suggested-action:only-child:backdrop:insensitive, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .osd .button.suggested-action:only-child:backdrop:insensitive, .osd .linked > GtkComboBox:only-child > .the-button-in-the-combobox .button.suggested-action:only-child:backdrop:insensitive, +.osd .linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .button.suggested-action:only-child:backdrop:insensitive, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .osd .button.suggested-action:only-child:backdrop:insensitive, .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .osd .button.suggested-action:only-child:backdrop:insensitive, .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .osd .button.suggested-action:only-child:backdrop:insensitive, .inline-toolbar GtkToolButton:only-child > .button.flat .osd .button.suggested-action:only-child:backdrop:insensitive, .osd .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .button.suggested-action:only-child:backdrop:insensitive, .osd .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .button.suggested-action:only-child:backdrop:insensitive, .osd .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .button.suggested-action:only-child:backdrop:insensitive, .osd .inline-toolbar GtkToolButton:only-child > .button.flat .button.suggested-action:only-child:backdrop:insensitive, +.inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button.suggested-action:only-child:backdrop:insensitive, +.inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button.suggested-action:only-child:backdrop:insensitive, +.inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button.suggested-action:only-child:backdrop:insensitive, +.inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button.suggested-action:only-child:backdrop:insensitive, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .button.suggested-action:only-child:backdrop:insensitive, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .button.suggested-action:only-child:backdrop:insensitive, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .button.suggested-action:only-child:backdrop:insensitive, +.osd .inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .button.suggested-action:only-child:backdrop:insensitive, .linked > GtkComboBox:only-child > .the-button-in-the-combobox .osd .button.suggested-action:only-child:backdrop, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .osd .button.suggested-action:only-child:backdrop, .osd .linked > GtkComboBox:only-child > .the-button-in-the-combobox .button.suggested-action:only-child:backdrop, +.osd .linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .button.suggested-action:only-child:backdrop, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .osd .button.suggested-action:only-child:backdrop, .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .osd .button.suggested-action:only-child:backdrop, .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .osd .button.suggested-action:only-child:backdrop, .inline-toolbar GtkToolButton:only-child > .button.flat .osd .button.suggested-action:only-child:backdrop, .osd .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .button.suggested-action:only-child:backdrop, .osd .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .button.suggested-action:only-child:backdrop, .osd .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .button.suggested-action:only-child:backdrop, .osd .inline-toolbar GtkToolButton:only-child > .button.flat .button.suggested-action:only-child:backdrop, +.inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button.suggested-action:only-child:backdrop, +.inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button.suggested-action:only-child:backdrop, +.inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button.suggested-action:only-child:backdrop, +.inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button.suggested-action:only-child:backdrop, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .button.suggested-action:only-child:backdrop, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .button.suggested-action:only-child:backdrop, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .button.suggested-action:only-child:backdrop, +.osd .inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .button.suggested-action:only-child:backdrop, .linked > GtkComboBox:only-child > .the-button-in-the-combobox .osd .button.destructive-action:only-child, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .osd .button.destructive-action:only-child, .osd .linked > GtkComboBox:only-child > .the-button-in-the-combobox .button.destructive-action:only-child, +.osd .linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .button.destructive-action:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .osd .button.destructive-action:only-child, .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .osd .button.destructive-action:only-child, .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .osd .button.destructive-action:only-child, .inline-toolbar GtkToolButton:only-child > .button.flat .osd .button.destructive-action:only-child, .osd .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .button.destructive-action:only-child, .osd .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .button.destructive-action:only-child, .osd .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .button.destructive-action:only-child, .osd .inline-toolbar GtkToolButton:only-child > .button.flat .button.destructive-action:only-child, +.inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button.destructive-action:only-child, +.inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button.destructive-action:only-child, +.inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button.destructive-action:only-child, +.inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button.destructive-action:only-child, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .button.destructive-action:only-child, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .button.destructive-action:only-child, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .button.destructive-action:only-child, +.osd .inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .button.destructive-action:only-child, .linked > GtkComboBox:only-child > .the-button-in-the-combobox .osd .button.destructive-action:only-child:hover, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .osd .button.destructive-action:only-child:hover, .osd .linked > GtkComboBox:only-child > .the-button-in-the-combobox .button.destructive-action:only-child:hover, +.osd .linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .button.destructive-action:only-child:hover, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .osd .button.destructive-action:only-child:hover, .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .osd .button.destructive-action:only-child:hover, .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .osd .button.destructive-action:only-child:hover, .inline-toolbar GtkToolButton:only-child > .button.flat .osd .button.destructive-action:only-child:hover, .osd .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .button.destructive-action:only-child:hover, .osd .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .button.destructive-action:only-child:hover, .osd .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .button.destructive-action:only-child:hover, .osd .inline-toolbar GtkToolButton:only-child > .button.flat .button.destructive-action:only-child:hover, +.inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button.destructive-action:only-child:hover, +.inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button.destructive-action:only-child:hover, +.inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button.destructive-action:only-child:hover, +.inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button.destructive-action:only-child:hover, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .button.destructive-action:only-child:hover, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .button.destructive-action:only-child:hover, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .button.destructive-action:only-child:hover, +.osd .inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .button.destructive-action:only-child:hover, .linked > GtkComboBox:only-child > .the-button-in-the-combobox .osd .button.destructive-action:only-child:active, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .osd .button.destructive-action:only-child:active, .osd .linked > GtkComboBox:only-child > .the-button-in-the-combobox .button.destructive-action:only-child:active, +.osd .linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .button.destructive-action:only-child:active, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .osd .button.destructive-action:only-child:active, .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .osd .button.destructive-action:only-child:active, .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .osd .button.destructive-action:only-child:active, .inline-toolbar GtkToolButton:only-child > .button.flat .osd .button.destructive-action:only-child:active, .osd .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .button.destructive-action:only-child:active, .osd .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .button.destructive-action:only-child:active, .osd .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .button.destructive-action:only-child:active, .osd .inline-toolbar GtkToolButton:only-child > .button.flat .button.destructive-action:only-child:active, +.inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button.destructive-action:only-child:active, +.inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button.destructive-action:only-child:active, +.inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button.destructive-action:only-child:active, +.inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button.destructive-action:only-child:active, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .button.destructive-action:only-child:active, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .button.destructive-action:only-child:active, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .button.destructive-action:only-child:active, +.osd .inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .button.destructive-action:only-child:active, .linked > GtkComboBox:only-child > .the-button-in-the-combobox .osd .button.destructive-action:only-child:checked, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .osd .button.destructive-action:only-child:checked, .osd .linked > GtkComboBox:only-child > .the-button-in-the-combobox .button.destructive-action:only-child:checked, +.osd .linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .button.destructive-action:only-child:checked, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .osd .button.destructive-action:only-child:checked, .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .osd .button.destructive-action:only-child:checked, .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .osd .button.destructive-action:only-child:checked, .inline-toolbar GtkToolButton:only-child > .button.flat .osd .button.destructive-action:only-child:checked, .osd .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .button.destructive-action:only-child:checked, .osd .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .button.destructive-action:only-child:checked, .osd .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .button.destructive-action:only-child:checked, .osd .inline-toolbar GtkToolButton:only-child > .button.flat .button.destructive-action:only-child:checked, +.inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button.destructive-action:only-child:checked, +.inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button.destructive-action:only-child:checked, +.inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button.destructive-action:only-child:checked, +.inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button.destructive-action:only-child:checked, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .button.destructive-action:only-child:checked, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .button.destructive-action:only-child:checked, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .button.destructive-action:only-child:checked, +.osd .inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .button.destructive-action:only-child:checked, .linked > GtkComboBox:only-child > .the-button-in-the-combobox .osd .button.destructive-action:only-child:backdrop:active, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .osd .button.destructive-action:only-child:backdrop:active, .osd .linked > GtkComboBox:only-child > .the-button-in-the-combobox .button.destructive-action:only-child:backdrop:active, +.osd .linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .button.destructive-action:only-child:backdrop:active, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .osd .button.destructive-action:only-child:backdrop:active, .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .osd .button.destructive-action:only-child:backdrop:active, .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .osd .button.destructive-action:only-child:backdrop:active, .inline-toolbar GtkToolButton:only-child > .button.flat .osd .button.destructive-action:only-child:backdrop:active, .osd .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .button.destructive-action:only-child:backdrop:active, .osd .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .button.destructive-action:only-child:backdrop:active, .osd .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .button.destructive-action:only-child:backdrop:active, .osd .inline-toolbar GtkToolButton:only-child > .button.flat .button.destructive-action:only-child:backdrop:active, +.inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button.destructive-action:only-child:backdrop:active, +.inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button.destructive-action:only-child:backdrop:active, +.inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button.destructive-action:only-child:backdrop:active, +.inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button.destructive-action:only-child:backdrop:active, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .button.destructive-action:only-child:backdrop:active, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .button.destructive-action:only-child:backdrop:active, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .button.destructive-action:only-child:backdrop:active, +.osd .inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .button.destructive-action:only-child:backdrop:active, .linked > GtkComboBox:only-child > .the-button-in-the-combobox .osd .button.destructive-action:only-child:backdrop:checked, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .osd .button.destructive-action:only-child:backdrop:checked, .osd .linked > GtkComboBox:only-child > .the-button-in-the-combobox .button.destructive-action:only-child:backdrop:checked, +.osd .linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .button.destructive-action:only-child:backdrop:checked, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .osd .button.destructive-action:only-child:backdrop:checked, .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .osd .button.destructive-action:only-child:backdrop:checked, .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .osd .button.destructive-action:only-child:backdrop:checked, .inline-toolbar GtkToolButton:only-child > .button.flat .osd .button.destructive-action:only-child:backdrop:checked, .osd .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .button.destructive-action:only-child:backdrop:checked, .osd .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .button.destructive-action:only-child:backdrop:checked, .osd .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .button.destructive-action:only-child:backdrop:checked, .osd .inline-toolbar GtkToolButton:only-child > .button.flat .button.destructive-action:only-child:backdrop:checked, +.inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button.destructive-action:only-child:backdrop:checked, +.inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button.destructive-action:only-child:backdrop:checked, +.inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button.destructive-action:only-child:backdrop:checked, +.inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button.destructive-action:only-child:backdrop:checked, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .button.destructive-action:only-child:backdrop:checked, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .button.destructive-action:only-child:backdrop:checked, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .button.destructive-action:only-child:backdrop:checked, +.osd .inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .button.destructive-action:only-child:backdrop:checked, .linked > GtkComboBox:only-child > .the-button-in-the-combobox .osd .button.destructive-action:only-child:insensitive, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .osd .button.destructive-action:only-child:insensitive, .osd .linked > GtkComboBox:only-child > .the-button-in-the-combobox .button.destructive-action:only-child:insensitive, +.osd .linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .button.destructive-action:only-child:insensitive, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .osd .button.destructive-action:only-child:insensitive, .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .osd .button.destructive-action:only-child:insensitive, .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .osd .button.destructive-action:only-child:insensitive, .inline-toolbar GtkToolButton:only-child > .button.flat .osd .button.destructive-action:only-child:insensitive, .osd .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .button.destructive-action:only-child:insensitive, .osd .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .button.destructive-action:only-child:insensitive, .osd .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .button.destructive-action:only-child:insensitive, .osd .inline-toolbar GtkToolButton:only-child > .button.flat .button.destructive-action:only-child:insensitive, +.inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button.destructive-action:only-child:insensitive, +.inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button.destructive-action:only-child:insensitive, +.inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button.destructive-action:only-child:insensitive, +.inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button.destructive-action:only-child:insensitive, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .button.destructive-action:only-child:insensitive, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .button.destructive-action:only-child:insensitive, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .button.destructive-action:only-child:insensitive, +.osd .inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .button.destructive-action:only-child:insensitive, .linked > GtkComboBox:only-child > .the-button-in-the-combobox .osd .button.destructive-action:only-child:backdrop:insensitive, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .osd .button.destructive-action:only-child:backdrop:insensitive, .osd .linked > GtkComboBox:only-child > .the-button-in-the-combobox .button.destructive-action:only-child:backdrop:insensitive, +.osd .linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .button.destructive-action:only-child:backdrop:insensitive, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .osd .button.destructive-action:only-child:backdrop:insensitive, .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .osd .button.destructive-action:only-child:backdrop:insensitive, .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .osd .button.destructive-action:only-child:backdrop:insensitive, .inline-toolbar GtkToolButton:only-child > .button.flat .osd .button.destructive-action:only-child:backdrop:insensitive, .osd .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .button.destructive-action:only-child:backdrop:insensitive, .osd .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .button.destructive-action:only-child:backdrop:insensitive, .osd .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .button.destructive-action:only-child:backdrop:insensitive, .osd .inline-toolbar GtkToolButton:only-child > .button.flat .button.destructive-action:only-child:backdrop:insensitive, +.inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button.destructive-action:only-child:backdrop:insensitive, +.inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button.destructive-action:only-child:backdrop:insensitive, +.inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button.destructive-action:only-child:backdrop:insensitive, +.inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button.destructive-action:only-child:backdrop:insensitive, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .button.destructive-action:only-child:backdrop:insensitive, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .button.destructive-action:only-child:backdrop:insensitive, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .button.destructive-action:only-child:backdrop:insensitive, +.osd .inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .button.destructive-action:only-child:backdrop:insensitive, .linked > GtkComboBox:only-child > .the-button-in-the-combobox .osd .button.destructive-action:only-child:backdrop, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .osd .button.destructive-action:only-child:backdrop, .osd .linked > GtkComboBox:only-child > .the-button-in-the-combobox .button.destructive-action:only-child:backdrop, +.osd .linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .button.destructive-action:only-child:backdrop, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .osd .button.destructive-action:only-child:backdrop, .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .osd .button.destructive-action:only-child:backdrop, .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .osd .button.destructive-action:only-child:backdrop, .inline-toolbar GtkToolButton:only-child > .button.flat .osd .button.destructive-action:only-child:backdrop, .osd .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .button.destructive-action:only-child:backdrop, .osd .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .button.destructive-action:only-child:backdrop, .osd .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .button.destructive-action:only-child:backdrop, .osd .inline-toolbar GtkToolButton:only-child > .button.flat .button.destructive-action:only-child:backdrop, +.inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button.destructive-action:only-child:backdrop, +.inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button.destructive-action:only-child:backdrop, +.inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .osd .button.destructive-action:only-child:backdrop, +.inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .osd .button.destructive-action:only-child:backdrop, +.osd .inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .button.destructive-action:only-child:backdrop, +.osd .inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .button.destructive-action:only-child:backdrop, +.osd .inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .button.destructive-action:only-child:backdrop, +.osd .inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .button.destructive-action:only-child:backdrop, .linked > GtkComboBox:only-child > .the-button-in-the-combobox .inline-toolbar .button:only-child, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .inline-toolbar .button:only-child, .inline-toolbar .linked > GtkComboBox:only-child > .the-button-in-the-combobox .button:only-child, +.inline-toolbar .linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .button:only-child, .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .button:only-child, .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .button:only-child, .inline-toolbar GtkToolButton:only-child > .button.flat .button:only-child, +.inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .button:only-child, +.inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .button:only-child, +.inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .button:only-child, +.inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .button:only-child, .linked > GtkComboBox:only-child > .the-button-in-the-combobox .inline-toolbar .button:only-child:backdrop, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .inline-toolbar .button:only-child:backdrop, .inline-toolbar .linked > GtkComboBox:only-child > .the-button-in-the-combobox .button:only-child:backdrop, +.inline-toolbar .linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .button:only-child:backdrop, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .button:only-child:backdrop, .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .button:only-child:backdrop, .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .button:only-child:backdrop, .inline-toolbar GtkToolButton:only-child > .button.flat .button:only-child:backdrop, +.inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .button:only-child:backdrop, +.inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .button:only-child:backdrop, +.inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .button:only-child:backdrop, +.inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .button:only-child:backdrop, .linked > GtkComboBox:only-child > .the-button-in-the-combobox .linked > .button:only-child, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .linked > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .linked > .button:only-child, .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .linked > .button:only-child, .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .linked > .button:only-child, .inline-toolbar GtkToolButton:only-child > .button.flat .linked > .button:only-child, +.inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .linked > .button:only-child, +.inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .linked > .button:only-child, +.inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .linked > .button:only-child, +.inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .linked > .button:only-child, .linked > GtkComboBox:only-child > .the-button-in-the-combobox .linked > .button:only-child:hover, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .linked > .button:only-child:hover, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .linked > .button:only-child:hover, .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .linked > .button:only-child:hover, .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .linked > .button:only-child:hover, .inline-toolbar GtkToolButton:only-child > .button.flat .linked > .button:only-child:hover, +.inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .linked > .button:only-child:hover, +.inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .linked > .button:only-child:hover, +.inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .linked > .button:only-child:hover, +.inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .linked > .button:only-child:hover, .linked > GtkComboBox:only-child > .the-button-in-the-combobox .linked > .button:only-child:active, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .linked > .button:only-child:active, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .linked > .button:only-child:active, .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .linked > .button:only-child:active, .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .linked > .button:only-child:active, .inline-toolbar GtkToolButton:only-child > .button.flat .linked > .button:only-child:active, +.inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .linked > .button:only-child:active, +.inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .linked > .button:only-child:active, +.inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .linked > .button:only-child:active, +.inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .linked > .button:only-child:active, .linked > GtkComboBox:only-child > .the-button-in-the-combobox .linked > .button:only-child:checked, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .linked > .button:only-child:checked, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .linked > .button:only-child:checked, .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .linked > .button:only-child:checked, .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .linked > .button:only-child:checked, .inline-toolbar GtkToolButton:only-child > .button.flat .linked > .button:only-child:checked, +.inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .linked > .button:only-child:checked, +.inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .linked > .button:only-child:checked, +.inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .linked > .button:only-child:checked, +.inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .linked > .button:only-child:checked, .linked > GtkComboBox:only-child > .the-button-in-the-combobox .linked > .button:only-child:backdrop, +.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox .linked > .button:only-child:backdrop, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat .linked > .button:only-child:backdrop, .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat .linked > .button:only-child:backdrop, .inline-toolbar.location-bar GtkToolButton:only-child > .button.flat .linked > .button:only-child:backdrop, .inline-toolbar GtkToolButton:only-child > .button.flat .linked > .button:only-child:backdrop, +.inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat .linked > .button:only-child:backdrop, +.inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat .linked > .button:only-child:backdrop, +.inline-toolbar.location-bar GtkToolButton:backdrop:only-child > .button.flat .linked > .button:only-child:backdrop, +.inline-toolbar GtkToolButton:backdrop:only-child > .button.flat .linked > .button:only-child:backdrop { + border-radius: 3px; + border-style: solid; } + +.linked.vertical > GtkComboBoxText > .the-button-in-the-combobox, +.linked.vertical > GtkComboBox > .the-button-in-the-combobox, .linked.vertical > .entry, .linked.vertical > .button, .linked.vertical > .button:hover, .linked.vertical > .button:active, .linked.vertical > .button:checked, .linked.vertical > .button:backdrop { + border-style: solid solid none solid; + border-radius: 0; } + +.linked.vertical > GtkComboBoxText:first-child > .the-button-in-the-combobox .linked.vertical > .entry:first-child, +.linked.vertical > GtkComboBox:first-child > .the-button-in-the-combobox .linked.vertical > .entry:first-child, .linked.vertical > GtkComboBoxText:first-child > .the-button-in-the-combobox .linked.vertical > .button:first-child, +.linked.vertical > GtkComboBox:first-child > .the-button-in-the-combobox .linked.vertical > .button:first-child { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } + +.linked.vertical > GtkComboBoxText:last-child > .the-button-in-the-combobox .linked.vertical > .entry:last-child, +.linked.vertical > GtkComboBox:last-child > .the-button-in-the-combobox .linked.vertical > .entry:last-child, .linked.vertical > GtkComboBoxText:last-child > .the-button-in-the-combobox .linked.vertical > .button:last-child, +.linked.vertical > GtkComboBox:last-child > .the-button-in-the-combobox .linked.vertical > .button:last-child { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + border-style: solid; } + +.linked.vertical > GtkComboBoxText:only-child > .the-button-in-the-combobox .linked.vertical > .entry:only-child, +.linked.vertical > GtkComboBox:only-child > .the-button-in-the-combobox .linked.vertical > .entry:only-child, .linked.vertical > GtkComboBoxText:only-child > .the-button-in-the-combobox .linked.vertical > .button:only-child, +.linked.vertical > GtkComboBox:only-child > .the-button-in-the-combobox .linked.vertical > .button:only-child { + border-radius: 3px; + border-style: solid; } + +headerbar .header-bar .button.titlebutton, headerbar .header-bar .button.titlebutton:backdrop, .titlebar .header-bar .button.titlebutton, .titlebar .header-bar .button.titlebutton:backdrop, .header-bar .button.titlebutton, .header-bar .button.titlebutton:backdrop, headerbar .header-bar .button.titlebutton:hover, .titlebar .header-bar .button.titlebutton:hover, .header-bar .button.titlebutton:hover, .header-bar .button.titlebutton:hover:backdrop, headerbar .header-bar .button.titlebutton:active, .titlebar .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:active:backdrop, headerbar .titlebar .button.titlebutton, headerbar .titlebar .button.titlebutton:backdrop, .titlebar .titlebar .button.titlebutton, .titlebar .titlebar .button.titlebutton:backdrop, +.titlebar .button.titlebutton, +.titlebar .button.titlebutton:backdrop, headerbar .titlebar .button.titlebutton:hover, .titlebar .titlebar .button.titlebutton:hover, +.titlebar .button.titlebutton:hover, +.titlebar .button.titlebutton:hover:backdrop, headerbar .titlebar .button.titlebutton:active, .titlebar .titlebar .button.titlebutton:active, +.titlebar .button.titlebutton:active, +.titlebar .button.titlebutton:active:backdrop, .scale-popup .button:backdrop, .scale-popup .button:backdrop:hover, .scale-popup .button:backdrop:insensitive, .scale-popup .button:hover, GtkCalendar.button:insensitive, GtkCalendar.button:backdrop, GtkCalendar.button:hover, GtkCalendar.button, .app-notification .button.flat:backdrop, .app-notification .button.flat:insensitive, .app-notification .button.flat:backdrop:insensitive, .app-notification .button.flat, .notebook tab .button, .menu.button, .button:link:backdrop, .button:visited:backdrop, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .button:link, .button:visited, .menuitem.button.flat:backdrop, .menuitem.button.flat:backdrop:hover, .menuitem.button.flat { + background-color: transparent; + background-image: none; + border-color: transparent; + box-shadow: none; + text-shadow: none; + icon-shadow: none; } + +/* menu buttons */ +.menuitem.button.flat { + outline-offset: -1px; } + .menuitem.button.flat:hover { + background-color: #e3e4e4; } + +GtkColorButton.button { + padding: 5px; } + GtkColorButton.button GtkColorSwatch:first-child:last-child { + border-radius: 0; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), 0 1px rgba(0, 0, 0, 0.1); } + GtkColorButton.button GtkColorSwatch:first-child:last-child:insensitive, GtkColorButton.button GtkColorSwatch:first-child:last-child:backdrop { + box-shadow: none; } + +/********* + * Links * + *********/ +.button:link, .button:visited, +*:link { + color: #19B6EE; } + .button:visited, + *:link:visited { + color: #0b7196; } + *:selected .button:visited, *:selected *:link:visited { + color: #f6bba6; } + .button:hover:link, .button:hover:visited, + *:link:hover { + color: #48c5f2; } + *:selected .button:hover:link, *:selected .button:hover:visited, *:selected *:link:hover { + color: #fdeee9; } + .button:active:link, .button:active:visited, + *:link:active { + color: #19B6EE; } + *:selected .button:active:link, *:selected .button:active:visited, *:selected *:link:active { + color: #fbddd2; } + .button:backdrop:link, .button:backdrop:visited, + *:link:backdrop, + *:link:backdrop:hover, + *:link:backdrop:hover:selected { + color: #31bef0; } + .titlebar.selection-mode .subtitle:link, + .header-bar.selection-mode .subtitle:link, .button:selected:link, .button:selected:visited, *:selected .button:link, *:selected .button:visited, + *:link:selected, *:selected *:link { + color: #d1f0fc; } + +.button:link, .button:visited { + text-shadow: none; } + .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked { + text-shadow: none; } + .button:link > .label, .button:visited > .label { + text-decoration-line: underline; } + +/***************** + * GtkSpinButton * + *****************/ +.spinbutton .button { + background-image: none; + border-style: none none none solid; + border-color: rgba(194, 200, 206, 0.3); + color: #505050; + border-radius: 0; + box-shadow: none; } + .spinbutton .button:dir(rtl) { + border-style: none solid none none; } + .spinbutton .button:hover { + color: #3D3D3D; + background-color: rgba(61, 61, 61, 0.05); } + .spinbutton .button:insensitive { + color: rgba(153, 154, 154, 0.3); } + .spinbutton .button:active { + box-shadow: inset 0 2px 3px -1px rgba(0, 0, 0, 0.2); + background-color: rgba(0, 0, 0, 0.1); } + .spinbutton .button:backdrop { + color: #9e9fa0; + border-color: rgba(186, 192, 199, 0.3); + background-color: transparent; } + .spinbutton .button:backdrop:insensitive { + background-image: none; + color: rgba(194, 200, 206, 0.3); + border-style: none none none solid; } + .spinbutton .button:backdrop:insensitive:dir(rtl) { + border-style: none solid none none; } + +.osd .spinbutton .button { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; + text-shadow: none; + icon-shadow: none; + color: #F7F7F7; + border-style: none none none solid; + border-color: rgba(62, 62, 62, 0.7); + border-radius: 0; + box-shadow: none; + icon-shadow: 0 1px black; } + .osd .spinbutton .button:dir(rtl) { + border-style: none solid none none; } + .osd .spinbutton .button:hover { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; + text-shadow: none; + icon-shadow: none; + color: #F7F7F7; + border-color: rgba(62, 62, 62, 0.5); + background-color: rgba(247, 247, 247, 0.1); + icon-shadow: 0 1px black; + box-shadow: none; } + .osd .spinbutton .button:backdrop { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; + text-shadow: none; + icon-shadow: none; + color: #F7F7F7; + border-color: rgba(62, 62, 62, 0.5); + icon-shadow: none; + box-shadow: none; } + .osd .spinbutton .button:insensitive { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; + text-shadow: none; + icon-shadow: none; + color: #888888; + border-color: rgba(62, 62, 62, 0.5); + icon-shadow: none; + box-shadow: none; } + .osd .spinbutton .button:last-child { + border-radius: 0 3px 3px 0; } + .osd .spinbutton .button:dir(rtl):first-child { + border-radius: 3px 0 0 3px; } + +.spinbutton.vertical .button, .spinbutton.vertical:dir(rtl) .button { + padding-top: 8px; + padding-bottom: 8px; } + .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { + background-color: #fefefe; + background-image: none; + color: #3D3D3D; + border-color: #fefefe; + box-shadow: none; + text-shadow: none; + icon-shadow: none; } + .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { + box-shadow: inset 0 1px 1px 0px rgba(0, 0, 0, 0.05); + border-color: #c2c8ce; + border-top-color: #7b8896; + background-color: #eaecee; + background-image: none; + text-shadow: none; + icon-shadow: none; } + .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { + -gtk-image-effect: highlight; + background-color: white; + background-image: none; + color: #3D3D3D; + border-color: white; + box-shadow: none; + text-shadow: none; + icon-shadow: none; } + .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + background-color: #F5F6F7; + background-image: none; + border-color: #F5F6F7; + box-shadow: none; } + .spinbutton.vertical .button:first-child:insensitive .label, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive .label, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { + color: #999a9a; } + .spinbutton.vertical .button:first-child:backdrop, .spinbutton.vertical:dir(rtl) .button:first-child:backdrop { + -gtk-image-effect: dim; + background-color: rgba(254, 254, 254, 0.7); + background-image: none; + border-color: rgba(254, 254, 254, 0.7); + box-shadow: none; } + .spinbutton.vertical .button:first-child:backdrop .label, .spinbutton.vertical .button:first-child:backdrop, .spinbutton.vertical:dir(rtl) .button:first-child:backdrop .label, .spinbutton.vertical:dir(rtl) .button:first-child:backdrop { + color: rgba(45, 45, 45, 0.8); } + .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { + background-color: #fefefe; + background-image: none; + color: #3D3D3D; + border-color: #c2c8ce; + box-shadow: 0 1px rgba(0, 0, 0, 0.1); + text-shadow: none; + icon-shadow: none; } + .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { + box-shadow: inset 0 1px 1px 0px rgba(0, 0, 0, 0.05); + border-color: #c2c8ce; + border-top-color: #7b8896; + background-color: #eaecee; + background-image: none; + text-shadow: none; + icon-shadow: none; } + .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { + -gtk-image-effect: highlight; + background-color: white; + background-image: none; + color: #3D3D3D; + border-color: #c2c8ce; + border-bottom-color: #98a2ac; + box-shadow: 0 1px rgba(0, 0, 0, 0.15); + text-shadow: none; + icon-shadow: none; } + .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + background-color: #F5F6F7; + background-image: none; + border-color: rgba(194, 200, 206, 0.7); + box-shadow: 0 1px transparent; } + .spinbutton.vertical .button:last-child:insensitive .label, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive .label, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { + color: #999a9a; } + .spinbutton.vertical .button:last-child:backdrop, .spinbutton.vertical:dir(rtl) .button:last-child:backdrop { + -gtk-image-effect: dim; + background-color: rgba(254, 254, 254, 0.7); + background-image: none; + border-color: #bac0c7; + box-shadow: none; } + .spinbutton.vertical .button:last-child:backdrop .label, .spinbutton.vertical .button:last-child:backdrop, .spinbutton.vertical:dir(rtl) .button:last-child:backdrop .label, .spinbutton.vertical:dir(rtl) .button:last-child:backdrop { + color: rgba(45, 45, 45, 0.8); } + .spinbutton.vertical .button:backdrop:insensitive, .spinbutton.vertical:dir(rtl) .button:backdrop:insensitive { + background-color: #edeef0; + background-image: none; + border-color: rgba(186, 192, 199, 0.7); + box-shadow: none; } + .spinbutton.vertical .button:backdrop:insensitive .label, .spinbutton.vertical .button:backdrop:insensitive, .spinbutton.vertical:dir(rtl) .button:backdrop:insensitive .label, .spinbutton.vertical:dir(rtl) .button:backdrop:insensitive { + color: rgba(45, 45, 45, 0.5); } + +.spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { + border-radius: 0; + padding-left: 3px; + padding-right: 3px; } + +.spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical .button:first-child:backdrop { + border-radius: 3px 3px 0 0; + border-style: solid solid none solid; } + +.spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical .button:last-child:backdrop { + border-radius: 0 0 3px 3px; + border-style: none solid solid solid; } + +GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { + padding: 1px; + border-width: 1px 0; + border-color: #e95420; + border-radius: 0; + box-shadow: none; } + +/************** + * ComboBoxes * + **************/ +GtkComboBox { + -GtkComboBox-arrow-scaling: 0.5; + -GtkComboBox-shadow-type: none; + text-shadow: 0 1px rgba(255, 255, 255, 0.769231); + icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); } + GtkComboBox > .the-button-in-the-combobox { + padding-top: 3px; + padding-bottom: 4px; } + GtkComboBox:insensitive { + color: #999a9a; + text-shadow: none; + icon-shadow: none; } + GtkComboBox:backdrop { + color: #959697; + text-shadow: none; + icon-shadow: none; } + GtkComboBox:backdrop:insensitive { + color: #c2c8ce; } + GtkComboBox .menuitem { + text-shadow: none; } + GtkComboBox .separator.vertical { + -GtkWidget-wide-separators: true; } + GtkComboBox.combobox-entry .entry:dir(ltr) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + GtkComboBox.combobox-entry .entry:dir(rtl) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + GtkComboBox.combobox-entry .button:dir(ltr) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-left-style: none; } + GtkComboBox.combobox-entry .button:dir(rtl) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + border-right-style: none; } + +/************ + * Toolbars * + ************/ +.toolbar, .search-bar, .location-bar, .inline-toolbar { + -GtkWidget-window-dragging: true; + padding: 4px; + background-color: #F5F6F7; } + .osd .toolbar, .osd .search-bar, .osd .location-bar, .osd .inline-toolbar, .toolbar.osd, .osd.search-bar, .osd.location-bar, .osd.inline-toolbar { + padding: 13px; + border: none; + border-radius: 5px; + background-color: rgba(24, 24, 24, 0.7); } + +.inline-toolbar { + border-width: 0 1px 1px; + padding: 3px; + border-radius: 0 0 5px 5px; } + +.search-bar, .location-bar { + border-width: 0 0 1px; + padding: 3px; } + +.inline-toolbar, .search-bar, .location-bar { + border-style: solid; + border-color: #c2c8ce; + background-color: #e6e8eb; + box-shadow: inset 0 2px 3px -1px #d0d5da, 0 1px rgba(0, 0, 0, 0.1); } + .inline-toolbar:backdrop, .search-bar:backdrop, .location-bar:backdrop { + border-color: #bac0c7; + background-color: silver; + box-shadow: none; } + +/*************** + * Header bars * + ***************/ +.titlebar, +.header-bar { + padding: 0 6px; + border-color: rgba(11, 11, 11, 0.3); + border-top-color: #3D3D3D; + border-style: solid; + border-width: 1px 1px 0 1px; + border-radius: 7px 7px 0 0; + background-color: #323030; + background-image: none; + box-shadow: none; + color: #F7F7F7; } + .titlebar:backdrop, + .header-bar:backdrop { + background-color: #323030; + border-color: rgba(11, 11, 11, 0.3); + color: #959697; + transition: all 200ms ease-out; } + .titlebar .title, + .header-bar .title { + font-weight: 500; + padding-left: 12px; + padding-right: 12px; } + .titlebar .subtitle, + .header-bar .subtitle { + font-size: smaller; + padding-left: 12px; + padding-right: 12px; } + .titlebar .header-bar-separator, .titlebar > GtkBox > .separator.vertical, + .header-bar .header-bar-separator, + .header-bar > GtkBox > .separator.vertical { + -GtkWidget-wide-separators: true; + -GtkWidget-separator-width: 1px; + background-color: #383737; + background-image: none; } + .titlebar .header-bar-separator:backdrop, .titlebar > GtkBox > .separator.vertical:backdrop, + .header-bar .header-bar-separator:backdrop, + .header-bar > GtkBox > .separator.vertical:backdrop { + background-color: #313030; + background-image: none; } + .titlebar.selection-mode, + .header-bar.selection-mode { + color: #FFFFFF; + text-shadow: 0 -1px rgba(0, 0, 0, 0.5); + border-color: #66220a; + background-image: linear-gradient(to bottom, #eb6637, #e95420); + box-shadow: inset 0 -1px #bb4218, inset 0 1px rgba(221, 80, 30, 0.55); } + .titlebar.selection-mode:backdrop, + .header-bar.selection-mode:backdrop { + background-image: linear-gradient(to bottom, #e95420); + box-shadow: inset 0 1px rgba(216, 78, 30, 0.46); } + .titlebar.selection-mode .button, + .header-bar.selection-mode .button { + background-color: #e95420; + background-image: none; + color: #FFFFFF; + border-color: #e95420; + box-shadow: none; + text-shadow: none; + icon-shadow: none; } + .titlebar.selection-mode .button.flat, + .header-bar.selection-mode .button.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; + text-shadow: none; + icon-shadow: none; } + .titlebar.selection-mode .button:hover, + .header-bar.selection-mode .button:hover { + -gtk-image-effect: highlight; + background-image: none; + color: #FFFFFF; + box-shadow: none; + text-shadow: none; + icon-shadow: none; } + .titlebar.selection-mode .button:active, .titlebar.selection-mode .button:checked, + .header-bar.selection-mode .button:active, + .header-bar.selection-mode .button:checked { + box-shadow: none; + border-color: #c34113; + background-image: none; + text-shadow: none; + icon-shadow: none; } + .titlebar.selection-mode .button:backdrop, .titlebar.selection-mode .button.flat:backdrop, + .header-bar.selection-mode .button:backdrop, + .header-bar.selection-mode .button.flat:backdrop { + -gtk-image-effect: dim; + background-color: #eb6637; + background-image: none; + border-color: #cc4414; + box-shadow: none; + -gtk-image-effect: none; + border-color: #66220a; } + .titlebar.selection-mode .button:backdrop .label, .titlebar.selection-mode .button:backdrop, .titlebar.selection-mode .button.flat:backdrop .label, .titlebar.selection-mode .button.flat:backdrop, + .header-bar.selection-mode .button:backdrop .label, + .header-bar.selection-mode .button:backdrop, + .header-bar.selection-mode .button.flat:backdrop .label, + .header-bar.selection-mode .button.flat:backdrop { + color: #f7c2af; } + .titlebar.selection-mode .button:backdrop:active, .titlebar.selection-mode .button:backdrop:checked, .titlebar.selection-mode .button.flat:backdrop:active, .titlebar.selection-mode .button.flat:backdrop:checked, + .header-bar.selection-mode .button:backdrop:active, + .header-bar.selection-mode .button:backdrop:checked, + .header-bar.selection-mode .button.flat:backdrop:active, + .header-bar.selection-mode .button.flat:backdrop:checked { + background-color: #b93e12; + background-image: none; + border-color: #cc4414; + box-shadow: none; + border-color: #66220a; } + .titlebar.selection-mode .button:backdrop:active .label, .titlebar.selection-mode .button:backdrop:active, .titlebar.selection-mode .button:backdrop:checked .label, .titlebar.selection-mode .button:backdrop:checked, .titlebar.selection-mode .button.flat:backdrop:active .label, .titlebar.selection-mode .button.flat:backdrop:active, .titlebar.selection-mode .button.flat:backdrop:checked .label, .titlebar.selection-mode .button.flat:backdrop:checked, + .header-bar.selection-mode .button:backdrop:active .label, + .header-bar.selection-mode .button:backdrop:active, + .header-bar.selection-mode .button:backdrop:checked .label, + .header-bar.selection-mode .button:backdrop:checked, + .header-bar.selection-mode .button.flat:backdrop:active .label, + .header-bar.selection-mode .button.flat:backdrop:active, + .header-bar.selection-mode .button.flat:backdrop:checked .label, + .header-bar.selection-mode .button.flat:backdrop:checked { + color: #f1d8d0; } + .titlebar.selection-mode .button:backdrop:insensitive, .titlebar.selection-mode .button.flat:backdrop:insensitive, + .header-bar.selection-mode .button:backdrop:insensitive, + .header-bar.selection-mode .button.flat:backdrop:insensitive { + background-color: rgba(233, 84, 32, 0.9); + background-image: none; + border-color: #cc4414; + box-shadow: none; + border-color: #66220a; } + .titlebar.selection-mode .button:backdrop:insensitive .label, .titlebar.selection-mode .button:backdrop:insensitive, .titlebar.selection-mode .button.flat:backdrop:insensitive .label, .titlebar.selection-mode .button.flat:backdrop:insensitive, + .header-bar.selection-mode .button:backdrop:insensitive .label, + .header-bar.selection-mode .button:backdrop:insensitive, + .header-bar.selection-mode .button.flat:backdrop:insensitive .label, + .header-bar.selection-mode .button.flat:backdrop:insensitive { + color: rgba(242, 152, 121, 0.935); } + .titlebar.selection-mode .button:backdrop:insensitive:active, .titlebar.selection-mode .button:backdrop:insensitive:checked, .titlebar.selection-mode .button.flat:backdrop:insensitive:active, .titlebar.selection-mode .button.flat:backdrop:insensitive:checked, + .header-bar.selection-mode .button:backdrop:insensitive:active, + .header-bar.selection-mode .button:backdrop:insensitive:checked, + .header-bar.selection-mode .button.flat:backdrop:insensitive:active, + .header-bar.selection-mode .button.flat:backdrop:insensitive:checked { + background-color: #ac3911; + background-image: none; + border-color: #cc4414; + border-color: #66220a; } + .titlebar.selection-mode .button:backdrop:insensitive:active .label, .titlebar.selection-mode .button:backdrop:insensitive:checked .label, .titlebar.selection-mode .button.flat:backdrop:insensitive:active .label, .titlebar.selection-mode .button.flat:backdrop:insensitive:checked .label, + .header-bar.selection-mode .button:backdrop:insensitive:active .label, + .header-bar.selection-mode .button:backdrop:insensitive:checked .label, + .header-bar.selection-mode .button.flat:backdrop:insensitive:active .label, + .header-bar.selection-mode .button.flat:backdrop:insensitive:checked .label { + color: #c97e64; } + .titlebar.selection-mode .button.flat:backdrop, .titlebar.selection-mode .button.flat:insensitive, .titlebar.selection-mode .button.flat:insensitive:backdrop, + .header-bar.selection-mode .button.flat:backdrop, + .header-bar.selection-mode .button.flat:insensitive, + .header-bar.selection-mode .button.flat:insensitive:backdrop { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; + text-shadow: none; + icon-shadow: none; } + .titlebar.selection-mode .button:insensitive, + .header-bar.selection-mode .button:insensitive { + background-color: rgba(233, 84, 32, 0.9); + background-image: none; + border-color: rgba(233, 84, 32, 0.9); + box-shadow: none; } + .titlebar.selection-mode .button:insensitive .label, .titlebar.selection-mode .button:insensitive, + .header-bar.selection-mode .button:insensitive .label, + .header-bar.selection-mode .button:insensitive { + color: rgba(245, 178, 155, 0.7); } + .titlebar.selection-mode .button:insensitive:active, .titlebar.selection-mode .button:insensitive:checked, + .header-bar.selection-mode .button:insensitive:active, + .header-bar.selection-mode .button:insensitive:checked { + background-color: #e8521c; + background-image: none; + border-color: #e8521c; + box-shadow: none; } + .titlebar.selection-mode .button:insensitive:active .label, .titlebar.selection-mode .button:insensitive:active, .titlebar.selection-mode .button:insensitive:checked .label, .titlebar.selection-mode .button:insensitive:checked, + .header-bar.selection-mode .button:insensitive:active .label, + .header-bar.selection-mode .button:insensitive:active, + .header-bar.selection-mode .button:insensitive:checked .label, + .header-bar.selection-mode .button:insensitive:checked { + color: #f6baa4; } + .titlebar.selection-mode .button.suggested-action, + .header-bar.selection-mode .button.suggested-action { + background-color: #fefefe; + background-image: none; + color: #3D3D3D; + border-color: #fefefe; + box-shadow: none; + text-shadow: none; + icon-shadow: none; + border-color: #66220a; } + .titlebar.selection-mode .button.suggested-action:hover, + .header-bar.selection-mode .button.suggested-action:hover { + -gtk-image-effect: highlight; + background-color: white; + background-image: none; + color: #3D3D3D; + border-color: white; + box-shadow: none; + text-shadow: none; + icon-shadow: none; + border-color: #66220a; } + .titlebar.selection-mode .button.suggested-action:active, + .header-bar.selection-mode .button.suggested-action:active { + box-shadow: inset 0 1px 1px 0px rgba(0, 0, 0, 0.05); + border-color: #c2c8ce; + border-top-color: #7b8896; + background-color: #eaecee; + background-image: none; + text-shadow: none; + icon-shadow: none; + border-color: #66220a; } + .titlebar.selection-mode .button.suggested-action:insensitive, + .header-bar.selection-mode .button.suggested-action:insensitive { + background-color: #F5F6F7; + background-image: none; + border-color: #F5F6F7; + box-shadow: none; + border-color: #66220a; } + .titlebar.selection-mode .button.suggested-action:insensitive .label, .titlebar.selection-mode .button.suggested-action:insensitive, + .header-bar.selection-mode .button.suggested-action:insensitive .label, + .header-bar.selection-mode .button.suggested-action:insensitive { + color: #999a9a; } + .titlebar.selection-mode .button.suggested-action:backdrop, + .header-bar.selection-mode .button.suggested-action:backdrop { + -gtk-image-effect: dim; + background-color: rgba(254, 254, 254, 0.7); + background-image: none; + border-color: rgba(254, 254, 254, 0.7); + box-shadow: none; + border-color: #66220a; } + .titlebar.selection-mode .button.suggested-action:backdrop .label, .titlebar.selection-mode .button.suggested-action:backdrop, + .header-bar.selection-mode .button.suggested-action:backdrop .label, + .header-bar.selection-mode .button.suggested-action:backdrop { + color: rgba(45, 45, 45, 0.8); } + .titlebar.selection-mode .button.suggested-action:backdrop:insensitive, + .header-bar.selection-mode .button.suggested-action:backdrop:insensitive { + background-color: #edeef0; + background-image: none; + border-color: #edeef0; + box-shadow: none; + border-color: #66220a; } + .titlebar.selection-mode .button.suggested-action:backdrop:insensitive .label, .titlebar.selection-mode .button.suggested-action:backdrop:insensitive, + .header-bar.selection-mode .button.suggested-action:backdrop:insensitive .label, + .header-bar.selection-mode .button.suggested-action:backdrop:insensitive { + color: rgba(45, 45, 45, 0.5); } + .titlebar.selection-mode .selection-menu, .titlebar.selection-mode .selection-menu:backdrop, + .header-bar.selection-mode .selection-menu, + .header-bar.selection-mode .selection-menu:backdrop { + border-color: rgba(233, 84, 32, 0); + background-image: linear-gradient(to bottom, rgba(233, 84, 32, 0)); + box-shadow: none; + padding-left: 10px; + padding-right: 10px; } + .titlebar.selection-mode .selection-menu GtkArrow, .titlebar.selection-mode .selection-menu:backdrop GtkArrow, + .header-bar.selection-mode .selection-menu GtkArrow, + .header-bar.selection-mode .selection-menu:backdrop GtkArrow { + -GtkArrow-arrow-scaling: 1; } + .titlebar.selection-mode .selection-menu .arrow, + .header-bar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + color: rgba(255, 255, 255, 0.5); + icon-shadow: none; } + .tiled .titlebar, .maximized .titlebar, .tiled .header-bar, .maximized .header-bar { + border-radius: 0; } + .titlebar.default-decoration, + .header-bar.default-decoration { + padding: 4px; } + .titlebar.default-decoration .button, + .header-bar.default-decoration .button { + padding: 5px; } + .titlebar .switch, + .header-bar .switch { + -GtkSwitch-slider-width: 18px; + -GtkSwitch-slider-height: 18px; + font-weight: normal; + font-size: 0; + outline-color: rgba(233, 84, 32, 0.6); + outline-offset: -2px; + outline-radius: 4px; + box-shadow: inset 0 1px 1px 0 rgba(0, 0, 0, 0.15); } + .titlebar .switch.trough, + .header-bar .switch.trough { + border: 1px solid #666262; + border-top-color: #3f3c3c; + border-radius: 5px; + color: transparent; + background-color: #736e6e; + background-image: none; + text-shadow: none; } + .titlebar .switch.trough:hover, + .header-bar .switch.trough:hover { + -gtk-image-effect: highlight; + background-color: #807b7b; } + .titlebar .switch.trough:active, + .header-bar .switch.trough:active { + background-color: #0e8420; + background-image: none; + color: transparent; + border-color: #0c6d1a; + border-top-color: #04280a; + box-shadow: inset 0 1px 1px 0 rgba(14, 132, 32, 0.8); + text-shadow: none; } + .titlebar .switch.trough:active:hover, + .header-bar .switch.trough:active:hover { + -gtk-image-effect: highlight; + background-color: #109b26; } + .titlebar .switch.trough:insensitive, + .header-bar .switch.trough:insensitive { + color: transparent; + border-color: rgba(0, 0, 0, 0.1); + background-image: none; + background-color: #878787; + box-shadow: none; + text-shadow: none; } + .titlebar .switch.trough:insensitive:active, + .header-bar .switch.trough:insensitive:active { + background-color: rgba(205, 205, 205, 0.4); } + .titlebar .switch.trough:backdrop, + .header-bar .switch.trough:backdrop { + color: transparent; + border-color: transparent; + border-top-color: #595555; + background-color: rgba(128, 123, 123, 0.7); + background-image: none; + box-shadow: none; + text-shadow: none; + transition: all 200ms ease-out; } + .titlebar .switch.trough:backdrop:hover, + .header-bar .switch.trough:backdrop:hover { + background-color: #736e6e; } + .titlebar .switch.trough:backdrop:hover:active, + .header-bar .switch.trough:backdrop:hover:active { + background-color: #0e8420; } + .titlebar .switch.trough:backdrop:active, + .header-bar .switch.trough:backdrop:active { + color: transparent; + border-color: #0c6d1a; + border-top-color: #095615; + background-color: #109b26; + background-image: none; + box-shadow: none; } + .titlebar .switch.trough:backdrop:active:insensitive, + .header-bar .switch.trough:backdrop:active:insensitive { + background-color: #949494; } + .titlebar .switch.trough:backdrop:insensitive, + .header-bar .switch.trough:backdrop:insensitive { + color: transparent; + border-color: transparent; + background-image: none; + background-color: #949494; + box-shadow: none; } + .titlebar .switch.slider, + .header-bar .switch.slider { + padding: 3px; + transition: all 0.4s ease-out; } + .titlebar .switch.slider, .titlebar .switch.slider:hover, .titlebar .switch.slider:active, .titlebar .switch.slider:insensitive, .titlebar .switch.slider:backdrop, .titlebar .switch.slider:backdrop:insensitive, + .header-bar .switch.slider, + .header-bar .switch.slider:hover, + .header-bar .switch.slider:active, + .header-bar .switch.slider:insensitive, + .header-bar .switch.slider:backdrop, + .header-bar .switch.slider:backdrop:insensitive { + background-color: #F7F7F7; + background-image: none; + background-clip: border-box; + border-radius: 4px; + border: 1px solid transparent; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15); } + .titlebar .switch.slider:active, + .header-bar .switch.slider:active { + box-shadow: 0 1px 1px #0b6418; } + .titlebar .switch.slider:insensitive, + .header-bar .switch.slider:insensitive { + background-color: #878787; + border: 1px solid #5D5D5D; + box-shadow: none; } + .titlebar .switch.slider:backdrop, + .header-bar .switch.slider:backdrop { + transition: all 200ms ease-out; + background-color: #F7F7F7; } + .titlebar .switch.slider:backdrop:active, + .header-bar .switch.slider:backdrop:active { + border-color: transparent; } + .titlebar .switch.slider:backdrop:insensitive, + .header-bar .switch.slider:backdrop:insensitive { + background-color: #949494; + transition: all 200ms ease-out; } + .list-row:selected .titlebar .switch, .list-row:selected .header-bar .switch { + box-shadow: none; + border-color: #66220a; } + .list-row:selected .titlebar .switch:backdrop, .list-row:selected .header-bar .switch:backdrop { + border-color: #66220a; } + .list-row:selected .titlebar .switch.slider:dir(rtl), .list-row:selected .header-bar .switch.slider:dir(rtl) { + border-left-color: #c2c8ce; } + .list-row:selected .titlebar .switch.slider:dir(ltr), .list-row:selected .header-bar .switch.slider:dir(ltr) { + border-right-color: #c2c8ce; } + .list-row:selected .titlebar .switch.slider, .list-row:selected .titlebar .switch.slider:active, .list-row:selected .header-bar .switch.slider, .list-row:selected .header-bar .switch.slider:active { + border-color: #66220a; } + .titlebar .entry, + .header-bar .entry { + background-color: transparent; + background-image: linear-gradient(to bottom, #eaecee, #fbfbfc 3px, #FFFFFF 90%); + color: rgba(247, 247, 247, 0.9); + border-color: transparent; + border-top-color: #4c4949; + box-shadow: none; + background-color: #4c4949; } + .titlebar .entry:insensitive, + .header-bar .entry:insensitive { + background-color: transparent; + background-image: linear-gradient(to bottom, #eaecee, #fbfbfc 3px, #FFFFFF 90%); + background-color: #323030; + border-color: #3f3c3c; + box-shadow: none; + color: #959494; } + .titlebar .entry:backdrop, + .header-bar .entry:backdrop { + background-color: transparent; + background-image: linear-gradient(to bottom, #eaecee, #fbfbfc 3px, #FFFFFF 90%); + background-color: #4c4949; + border-color: #4c4949; + box-shadow: none; + color: #9e9d9d; + transition: all 200ms ease-out; } + .titlebar .entry:backdrop .label, .titlebar .entry:backdrop, + .header-bar .entry:backdrop .label, + .header-bar .entry:backdrop { + color: #9e9d9d; } + .titlebar .entry:backdrop:insensitive, + .header-bar .entry:backdrop:insensitive { + background-color: transparent; + background-image: linear-gradient(to bottom, #eaecee, #fbfbfc 3px, #FFFFFF 90%); + background-color: transparent; + border-color: transparent; + box-shadow: none; + color: #777676; } + .titlebar .entry:backdrop:insensitive .label, .titlebar .entry:backdrop:insensitive, + .header-bar .entry:backdrop:insensitive .label, + .header-bar .entry:backdrop:insensitive { + color: #959697; } + .titlebar .entry .image, + .header-bar .entry .image { + color: #F7F7F7; } + .titlebar .entry .image:hover, + .header-bar .entry .image:hover { + color: #9e9d9d; } + .titlebar .entry selection, + .header-bar .entry selection { + background-color: #0f95c5; + color: #F7F7F7; } + .titlebar .entry selection:backdrop, + .header-bar .entry selection:backdrop { + background-color: #10a7dd; + color: white; } + .titlebar .text-button:not(.suggested-action):not(:hover), + .header-bar .text-button:not(.suggested-action):not(:hover) { + border-color: #4c4949; } + .titlebar .text-button:not(.suggested-action).default, .titlebar .text-button:not(.suggested-action).default:active, .titlebar .text-button:not(.suggested-action).default:hover, .titlebar .text-button:not(.suggested-action).default:focus, + .header-bar .text-button:not(.suggested-action).default, + .header-bar .text-button:not(.suggested-action).default:active, + .header-bar .text-button:not(.suggested-action).default:hover, + .header-bar .text-button:not(.suggested-action).default:focus { + color: white; } + .titlebar .button.default label, + .header-bar .button.default label { + color: white; } + .titlebar .button, .titlebar .button.flat, .titlebar .button.titlebutton.appmenu, + .header-bar .button, + .header-bar .button.flat, + .header-bar .button.titlebutton.appmenu { + background-color: #323030; + background-image: none; + color: #F7F7F7; + border-color: #323030; + box-shadow: none; + text-shadow: none; + icon-shadow: none; } + .titlebar .button:hover, .titlebar .button.flat:hover, .titlebar .button.titlebutton.appmenu:hover, + .header-bar .button:hover, + .header-bar .button.flat:hover, + .header-bar .button.titlebutton.appmenu:hover { + -gtk-image-effect: highlight; + background-color: #595555; + background-image: none; + color: #F7F7F7; + border-color: #595555; + box-shadow: none; + text-shadow: none; + icon-shadow: none; } + .titlebar .button:hover:backdrop, .titlebar .button.flat:hover:backdrop, .titlebar .button.titlebutton.appmenu:hover:backdrop, + .header-bar .button:hover:backdrop, + .header-bar .button.flat:hover:backdrop, + .header-bar .button.titlebutton.appmenu:hover:backdrop { + color: #F7F7F7; + background-color: #423f3f; + background-image: none; + border-color: #423f3f; + box-shadow: none; } + .titlebar .button:active, .titlebar .button:checked, .titlebar .button.flat:active, .titlebar .button.flat:checked, .titlebar .button.titlebutton.appmenu:active, .titlebar .button.titlebutton.appmenu:checked, + .header-bar .button:active, + .header-bar .button:checked, + .header-bar .button.flat:active, + .header-bar .button.flat:checked, + .header-bar .button.titlebutton.appmenu:active, + .header-bar .button.titlebutton.appmenu:checked { + box-shadow: none; + border-color: #4c4949; + background-color: #4c4949; + background-image: none; + text-shadow: none; + icon-shadow: none; } + .titlebar .button:hover:checked, .titlebar .button.flat:hover:checked, .titlebar .button.titlebutton.appmenu:hover:checked, + .header-bar .button:hover:checked, + .header-bar .button.flat:hover:checked, + .header-bar .button.titlebutton.appmenu:hover:checked { + border-color: #666262; + box-shadow: none; + background-color: #666262; + background-image: none; + text-shadow: none; + icon-shadow: none; } + .titlebar .button:insensitive, .titlebar .button.flat:insensitive, .titlebar .button.titlebutton.appmenu:insensitive, + .header-bar .button:insensitive, + .header-bar .button.flat:insensitive, + .header-bar .button.titlebutton.appmenu:insensitive { + background-color: #323030; + background-image: none; + border-color: #323030; + box-shadow: none; } + .titlebar .button:insensitive .label, .titlebar .button:insensitive, .titlebar .button.flat:insensitive .label, .titlebar .button.flat:insensitive, .titlebar .button.titlebutton.appmenu:insensitive .label, .titlebar .button.titlebutton.appmenu:insensitive, + .header-bar .button:insensitive .label, + .header-bar .button:insensitive, + .header-bar .button.flat:insensitive .label, + .header-bar .button.flat:insensitive, + .header-bar .button.titlebutton.appmenu:insensitive .label, + .header-bar .button.titlebutton.appmenu:insensitive { + color: rgba(149, 148, 148, 0.75); } + .titlebar .button:insensitive:active, .titlebar .button:insensitive:checked, .titlebar .button.flat:insensitive:active, .titlebar .button.flat:insensitive:checked, .titlebar .button.titlebutton.appmenu:insensitive:active, .titlebar .button.titlebutton.appmenu:insensitive:checked, + .header-bar .button:insensitive:active, + .header-bar .button:insensitive:checked, + .header-bar .button.flat:insensitive:active, + .header-bar .button.flat:insensitive:checked, + .header-bar .button.titlebutton.appmenu:insensitive:active, + .header-bar .button.titlebutton.appmenu:insensitive:checked { + background-color: #1d1c1c; + background-image: none; + border-color: #1d1c1c; + box-shadow: none; } + .titlebar .button:insensitive:active .label, .titlebar .button:insensitive:active, .titlebar .button:insensitive:checked .label, .titlebar .button:insensitive:checked, .titlebar .button.flat:insensitive:active .label, .titlebar .button.flat:insensitive:active, .titlebar .button.flat:insensitive:checked .label, .titlebar .button.flat:insensitive:checked, .titlebar .button.titlebutton.appmenu:insensitive:active .label, .titlebar .button.titlebutton.appmenu:insensitive:active, .titlebar .button.titlebutton.appmenu:insensitive:checked .label, .titlebar .button.titlebutton.appmenu:insensitive:checked, + .header-bar .button:insensitive:active .label, + .header-bar .button:insensitive:active, + .header-bar .button:insensitive:checked .label, + .header-bar .button:insensitive:checked, + .header-bar .button.flat:insensitive:active .label, + .header-bar .button.flat:insensitive:active, + .header-bar .button.flat:insensitive:checked .label, + .header-bar .button.flat:insensitive:checked, + .header-bar .button.titlebutton.appmenu:insensitive:active .label, + .header-bar .button.titlebutton.appmenu:insensitive:active, + .header-bar .button.titlebutton.appmenu:insensitive:checked .label, + .header-bar .button.titlebutton.appmenu:insensitive:checked { + color: #a09f9f; } + .titlebar .button:backdrop, .titlebar .button.flat:backdrop, .titlebar .button.titlebutton.appmenu:backdrop, + .header-bar .button:backdrop, + .header-bar .button.flat:backdrop, + .header-bar .button.titlebutton.appmenu:backdrop { + -gtk-image-effect: dim; + background-color: #323030; + background-image: none; + border-color: #323030; + box-shadow: none; } + .titlebar .button:backdrop .label, .titlebar .button:backdrop, .titlebar .button.flat:backdrop .label, .titlebar .button.flat:backdrop, .titlebar .button.titlebutton.appmenu:backdrop .label, .titlebar .button.titlebutton.appmenu:backdrop, + .header-bar .button:backdrop .label, + .header-bar .button:backdrop, + .header-bar .button.flat:backdrop .label, + .header-bar .button.flat:backdrop, + .header-bar .button.titlebutton.appmenu:backdrop .label, + .header-bar .button.titlebutton.appmenu:backdrop { + color: #a8a7a7; } + .titlebar .button:backdrop:active, .titlebar .button:backdrop:checked, .titlebar .button.flat:backdrop:active, .titlebar .button.flat:backdrop:checked, .titlebar .button.titlebutton.appmenu:backdrop:active, .titlebar .button.titlebutton.appmenu:backdrop:checked, + .header-bar .button:backdrop:active, + .header-bar .button:backdrop:checked, + .header-bar .button.flat:backdrop:active, + .header-bar .button.flat:backdrop:checked, + .header-bar .button.titlebutton.appmenu:backdrop:active, + .header-bar .button.titlebutton.appmenu:backdrop:checked { + background-color: #3f3c3c; + background-image: none; + border-color: #3f3c3c; + border-top-color: #3f3c3c; + box-shadow: none; } + .titlebar .button:backdrop:active .label, .titlebar .button:backdrop:active, .titlebar .button:backdrop:checked .label, .titlebar .button:backdrop:checked, .titlebar .button.flat:backdrop:active .label, .titlebar .button.flat:backdrop:active, .titlebar .button.flat:backdrop:checked .label, .titlebar .button.flat:backdrop:checked, .titlebar .button.titlebutton.appmenu:backdrop:active .label, .titlebar .button.titlebutton.appmenu:backdrop:active, .titlebar .button.titlebutton.appmenu:backdrop:checked .label, .titlebar .button.titlebutton.appmenu:backdrop:checked, + .header-bar .button:backdrop:active .label, + .header-bar .button:backdrop:active, + .header-bar .button:backdrop:checked .label, + .header-bar .button:backdrop:checked, + .header-bar .button.flat:backdrop:active .label, + .header-bar .button.flat:backdrop:active, + .header-bar .button.flat:backdrop:checked .label, + .header-bar .button.flat:backdrop:checked, + .header-bar .button.titlebutton.appmenu:backdrop:active .label, + .header-bar .button.titlebutton.appmenu:backdrop:active, + .header-bar .button.titlebutton.appmenu:backdrop:checked .label, + .header-bar .button.titlebutton.appmenu:backdrop:checked { + color: #d2d2d2; } + .titlebar .button:backdrop:insensitive, .titlebar .button.flat:backdrop:insensitive, .titlebar .button.titlebutton.appmenu:backdrop:insensitive, + .header-bar .button:backdrop:insensitive, + .header-bar .button.flat:backdrop:insensitive, + .header-bar .button.titlebutton.appmenu:backdrop:insensitive { + background-image: none; + text-shadow: none; + icon-shadow: none; + background-color: transparent; + background-image: none; + border-color: transparent; + box-shadow: none; } + .titlebar .button:backdrop:insensitive .label, .titlebar .button:backdrop:insensitive, .titlebar .button.flat:backdrop:insensitive .label, .titlebar .button.flat:backdrop:insensitive, .titlebar .button.titlebutton.appmenu:backdrop:insensitive .label, .titlebar .button.titlebutton.appmenu:backdrop:insensitive, + .header-bar .button:backdrop:insensitive .label, + .header-bar .button:backdrop:insensitive, + .header-bar .button.flat:backdrop:insensitive .label, + .header-bar .button.flat:backdrop:insensitive, + .header-bar .button.titlebutton.appmenu:backdrop:insensitive .label, + .header-bar .button.titlebutton.appmenu:backdrop:insensitive { + color: rgba(247, 247, 247, 0.35); } + .titlebar .button:backdrop:insensitive:active, .titlebar .button:backdrop:insensitive:checked, .titlebar .button.flat:backdrop:insensitive:active, .titlebar .button.flat:backdrop:insensitive:checked, .titlebar .button.titlebutton.appmenu:backdrop:insensitive:active, .titlebar .button.titlebutton.appmenu:backdrop:insensitive:checked, + .header-bar .button:backdrop:insensitive:active, + .header-bar .button:backdrop:insensitive:checked, + .header-bar .button.flat:backdrop:insensitive:active, + .header-bar .button.flat:backdrop:insensitive:checked, + .header-bar .button.titlebutton.appmenu:backdrop:insensitive:active, + .header-bar .button.titlebutton.appmenu:backdrop:insensitive:checked { + background-color: #323030; + background-image: none; + border-color: #323030; + border-top-color: black; } + .titlebar .button:backdrop:insensitive:active .label, .titlebar .button:backdrop:insensitive:checked .label, .titlebar .button.flat:backdrop:insensitive:active .label, .titlebar .button.flat:backdrop:insensitive:checked .label, .titlebar .button.titlebutton.appmenu:backdrop:insensitive:active .label, .titlebar .button.titlebutton.appmenu:backdrop:insensitive:checked .label, + .header-bar .button:backdrop:insensitive:active .label, + .header-bar .button:backdrop:insensitive:checked .label, + .header-bar .button.flat:backdrop:insensitive:active .label, + .header-bar .button.flat:backdrop:insensitive:checked .label, + .header-bar .button.titlebutton.appmenu:backdrop:insensitive:active .label, + .header-bar .button.titlebutton.appmenu:backdrop:insensitive:checked .label { + color: #777676; } + .titlebar .button.suggested-action, .titlebar .button.flat.suggested-action, .titlebar .button.titlebutton.appmenu.suggested-action, + .header-bar .button.suggested-action, + .header-bar .button.flat.suggested-action, + .header-bar .button.titlebutton.appmenu.suggested-action { + background-color: #0e8420; + background-image: none; + color: white; + border-color: #0e8420; + box-shadow: none; + text-shadow: none; + icon-shadow: none; } + .titlebar .button.suggested-action:hover, .titlebar .button.flat.suggested-action:hover, .titlebar .button.titlebutton.appmenu.suggested-action:hover, + .header-bar .button.suggested-action:hover, + .header-bar .button.flat.suggested-action:hover, + .header-bar .button.titlebutton.appmenu.suggested-action:hover { + -gtk-image-effect: highlight; + background-color: #109b26; + background-image: none; + color: white; + border-color: #109b26; + box-shadow: none; + text-shadow: none; + icon-shadow: none; } + .titlebar .button.suggested-action:hover:backdrop, .titlebar .button.flat.suggested-action:hover:backdrop, .titlebar .button.titlebutton.appmenu.suggested-action:hover:backdrop, + .header-bar .button.suggested-action:hover:backdrop, + .header-bar .button.flat.suggested-action:hover:backdrop, + .header-bar .button.titlebutton.appmenu.suggested-action:hover:backdrop { + color: white; + background-color: #13b22b; + background-image: none; + border-color: #13b22b; + box-shadow: none; } + .titlebar .button.suggested-action:active, .titlebar .button.suggested-action:checked, .titlebar .button.flat.suggested-action:active, .titlebar .button.flat.suggested-action:checked, .titlebar .button.titlebutton.appmenu.suggested-action:active, .titlebar .button.titlebutton.appmenu.suggested-action:checked, + .header-bar .button.suggested-action:active, + .header-bar .button.suggested-action:checked, + .header-bar .button.flat.suggested-action:active, + .header-bar .button.flat.suggested-action:checked, + .header-bar .button.titlebutton.appmenu.suggested-action:active, + .header-bar .button.titlebutton.appmenu.suggested-action:checked { + box-shadow: none; + border-color: #095615; + border-top-color: #095615; + background-color: #095615; + background-image: none; + text-shadow: none; + icon-shadow: none; } + .titlebar .button.suggested-action:insensitive, .titlebar .button.flat.suggested-action:insensitive, .titlebar .button.titlebutton.appmenu.suggested-action:insensitive, + .header-bar .button.suggested-action:insensitive, + .header-bar .button.flat.suggested-action:insensitive, + .header-bar .button.titlebutton.appmenu.suggested-action:insensitive { + background-color: rgba(14, 132, 32, 0.9); + background-image: none; + border-color: rgba(14, 132, 32, 0.9); + box-shadow: none; } + .titlebar .button.suggested-action:insensitive .label, .titlebar .button.suggested-action:insensitive, .titlebar .button.flat.suggested-action:insensitive .label, .titlebar .button.flat.suggested-action:insensitive, .titlebar .button.titlebutton.appmenu.suggested-action:insensitive .label, .titlebar .button.titlebutton.appmenu.suggested-action:insensitive, + .header-bar .button.suggested-action:insensitive .label, + .header-bar .button.suggested-action:insensitive, + .header-bar .button.flat.suggested-action:insensitive .label, + .header-bar .button.flat.suggested-action:insensitive, + .header-bar .button.titlebutton.appmenu.suggested-action:insensitive .label, + .header-bar .button.titlebutton.appmenu.suggested-action:insensitive { + color: rgba(247, 247, 247, 0.55); } + .titlebar .button.suggested-action:insensitive:active, .titlebar .button.suggested-action:insensitive:checked, .titlebar .button.flat.suggested-action:insensitive:active, .titlebar .button.flat.suggested-action:insensitive:checked, .titlebar .button.titlebutton.appmenu.suggested-action:insensitive:active, .titlebar .button.titlebutton.appmenu.suggested-action:insensitive:checked, + .header-bar .button.suggested-action:insensitive:active, + .header-bar .button.suggested-action:insensitive:checked, + .header-bar .button.flat.suggested-action:insensitive:active, + .header-bar .button.flat.suggested-action:insensitive:checked, + .header-bar .button.titlebutton.appmenu.suggested-action:insensitive:active, + .header-bar .button.titlebutton.appmenu.suggested-action:insensitive:checked { + background-color: #287734; + background-image: none; + border-color: #287734; + box-shadow: none; } + .titlebar .button.suggested-action:insensitive:active .label, .titlebar .button.suggested-action:insensitive:active, .titlebar .button.suggested-action:insensitive:checked .label, .titlebar .button.suggested-action:insensitive:checked, .titlebar .button.flat.suggested-action:insensitive:active .label, .titlebar .button.flat.suggested-action:insensitive:active, .titlebar .button.flat.suggested-action:insensitive:checked .label, .titlebar .button.flat.suggested-action:insensitive:checked, .titlebar .button.titlebutton.appmenu.suggested-action:insensitive:active .label, .titlebar .button.titlebutton.appmenu.suggested-action:insensitive:active, .titlebar .button.titlebutton.appmenu.suggested-action:insensitive:checked .label, .titlebar .button.titlebutton.appmenu.suggested-action:insensitive:checked, + .header-bar .button.suggested-action:insensitive:active .label, + .header-bar .button.suggested-action:insensitive:active, + .header-bar .button.suggested-action:insensitive:checked .label, + .header-bar .button.suggested-action:insensitive:checked, + .header-bar .button.flat.suggested-action:insensitive:active .label, + .header-bar .button.flat.suggested-action:insensitive:active, + .header-bar .button.flat.suggested-action:insensitive:checked .label, + .header-bar .button.flat.suggested-action:insensitive:checked, + .header-bar .button.titlebutton.appmenu.suggested-action:insensitive:active .label, + .header-bar .button.titlebutton.appmenu.suggested-action:insensitive:active, + .header-bar .button.titlebutton.appmenu.suggested-action:insensitive:checked .label, + .header-bar .button.titlebutton.appmenu.suggested-action:insensitive:checked { + color: #a9c9ae; } + .titlebar .button.suggested-action:backdrop, .titlebar .button.flat.suggested-action:backdrop, .titlebar .button.titlebutton.appmenu.suggested-action:backdrop, + .header-bar .button.suggested-action:backdrop, + .header-bar .button.flat.suggested-action:backdrop, + .header-bar .button.titlebutton.appmenu.suggested-action:backdrop { + -gtk-image-effect: dim; + background-color: #109b26; + background-image: none; + border-color: #109b26; + box-shadow: none; } + .titlebar .button.suggested-action:backdrop .label, .titlebar .button.suggested-action:backdrop, .titlebar .button.flat.suggested-action:backdrop .label, .titlebar .button.flat.suggested-action:backdrop, .titlebar .button.titlebutton.appmenu.suggested-action:backdrop .label, .titlebar .button.titlebutton.appmenu.suggested-action:backdrop, + .header-bar .button.suggested-action:backdrop .label, + .header-bar .button.suggested-action:backdrop, + .header-bar .button.flat.suggested-action:backdrop .label, + .header-bar .button.flat.suggested-action:backdrop, + .header-bar .button.titlebutton.appmenu.suggested-action:backdrop .label, + .header-bar .button.titlebutton.appmenu.suggested-action:backdrop { + color: #a0d7a8; } + .titlebar .button.suggested-action:backdrop:active, .titlebar .button.suggested-action:backdrop:checked, .titlebar .button.flat.suggested-action:backdrop:active, .titlebar .button.flat.suggested-action:backdrop:checked, .titlebar .button.titlebutton.appmenu.suggested-action:backdrop:active, .titlebar .button.titlebutton.appmenu.suggested-action:backdrop:checked, + .header-bar .button.suggested-action:backdrop:active, + .header-bar .button.suggested-action:backdrop:checked, + .header-bar .button.flat.suggested-action:backdrop:active, + .header-bar .button.flat.suggested-action:backdrop:checked, + .header-bar .button.titlebutton.appmenu.suggested-action:backdrop:active, + .header-bar .button.titlebutton.appmenu.suggested-action:backdrop:checked { + background-color: #084d13; + background-image: none; + border-color: #084d13; + box-shadow: none; } + .titlebar .button.suggested-action:backdrop:active .label, .titlebar .button.suggested-action:backdrop:active, .titlebar .button.suggested-action:backdrop:checked .label, .titlebar .button.suggested-action:backdrop:checked, .titlebar .button.flat.suggested-action:backdrop:active .label, .titlebar .button.flat.suggested-action:backdrop:active, .titlebar .button.flat.suggested-action:backdrop:checked .label, .titlebar .button.flat.suggested-action:backdrop:checked, .titlebar .button.titlebutton.appmenu.suggested-action:backdrop:active .label, .titlebar .button.titlebutton.appmenu.suggested-action:backdrop:active, .titlebar .button.titlebutton.appmenu.suggested-action:backdrop:checked .label, .titlebar .button.titlebutton.appmenu.suggested-action:backdrop:checked, + .header-bar .button.suggested-action:backdrop:active .label, + .header-bar .button.suggested-action:backdrop:active, + .header-bar .button.suggested-action:backdrop:checked .label, + .header-bar .button.suggested-action:backdrop:checked, + .header-bar .button.flat.suggested-action:backdrop:active .label, + .header-bar .button.flat.suggested-action:backdrop:active, + .header-bar .button.flat.suggested-action:backdrop:checked .label, + .header-bar .button.flat.suggested-action:backdrop:checked, + .header-bar .button.titlebutton.appmenu.suggested-action:backdrop:active .label, + .header-bar .button.titlebutton.appmenu.suggested-action:backdrop:active, + .header-bar .button.titlebutton.appmenu.suggested-action:backdrop:checked .label, + .header-bar .button.titlebutton.appmenu.suggested-action:backdrop:checked { + color: #cedbd0; } + .titlebar .button.suggested-action:backdrop:insensitive, .titlebar .button.flat.suggested-action:backdrop:insensitive, .titlebar .button.titlebutton.appmenu.suggested-action:backdrop:insensitive, + .header-bar .button.suggested-action:backdrop:insensitive, + .header-bar .button.flat.suggested-action:backdrop:insensitive, + .header-bar .button.titlebutton.appmenu.suggested-action:backdrop:insensitive { + background-color: rgba(14, 132, 32, 0.9); + background-image: none; + border-color: rgba(14, 132, 32, 0.9); + box-shadow: none; } + .titlebar .button.suggested-action:backdrop:insensitive .label, .titlebar .button.suggested-action:backdrop:insensitive, .titlebar .button.flat.suggested-action:backdrop:insensitive .label, .titlebar .button.flat.suggested-action:backdrop:insensitive, .titlebar .button.titlebutton.appmenu.suggested-action:backdrop:insensitive .label, .titlebar .button.titlebutton.appmenu.suggested-action:backdrop:insensitive, + .header-bar .button.suggested-action:backdrop:insensitive .label, + .header-bar .button.suggested-action:backdrop:insensitive, + .header-bar .button.flat.suggested-action:backdrop:insensitive .label, + .header-bar .button.flat.suggested-action:backdrop:insensitive, + .header-bar .button.titlebutton.appmenu.suggested-action:backdrop:insensitive .label, + .header-bar .button.titlebutton.appmenu.suggested-action:backdrop:insensitive { + color: rgba(110, 181, 121, 0.935); } + .titlebar .button.suggested-action:backdrop:insensitive:active, .titlebar .button.suggested-action:backdrop:insensitive:checked, .titlebar .button.flat.suggested-action:backdrop:insensitive:active, .titlebar .button.flat.suggested-action:backdrop:insensitive:checked, .titlebar .button.titlebutton.appmenu.suggested-action:backdrop:insensitive:active, .titlebar .button.titlebutton.appmenu.suggested-action:backdrop:insensitive:checked, + .header-bar .button.suggested-action:backdrop:insensitive:active, + .header-bar .button.suggested-action:backdrop:insensitive:checked, + .header-bar .button.flat.suggested-action:backdrop:insensitive:active, + .header-bar .button.flat.suggested-action:backdrop:insensitive:checked, + .header-bar .button.titlebutton.appmenu.suggested-action:backdrop:insensitive:active, + .header-bar .button.titlebutton.appmenu.suggested-action:backdrop:insensitive:checked { + background-color: #073f0f; + background-image: none; + border-color: #073f0f; } + .titlebar .button.suggested-action:backdrop:insensitive:active .label, .titlebar .button.suggested-action:backdrop:insensitive:checked .label, .titlebar .button.flat.suggested-action:backdrop:insensitive:active .label, .titlebar .button.flat.suggested-action:backdrop:insensitive:checked .label, .titlebar .button.titlebutton.appmenu.suggested-action:backdrop:insensitive:active .label, .titlebar .button.titlebutton.appmenu.suggested-action:backdrop:insensitive:checked .label, + .header-bar .button.suggested-action:backdrop:insensitive:active .label, + .header-bar .button.suggested-action:backdrop:insensitive:checked .label, + .header-bar .button.flat.suggested-action:backdrop:insensitive:active .label, + .header-bar .button.flat.suggested-action:backdrop:insensitive:checked .label, + .header-bar .button.titlebutton.appmenu.suggested-action:backdrop:insensitive:active .label, + .header-bar .button.titlebutton.appmenu.suggested-action:backdrop:insensitive:checked .label { + color: #5e8263; } + .titlebar .button.destructive-action, .titlebar .button.flat.destructive-action, .titlebar .button.titlebutton.appmenu.destructive-action, + .header-bar .button.destructive-action, + .header-bar .button.flat.destructive-action, + .header-bar .button.titlebutton.appmenu.destructive-action { + background-color: #991121; + background-image: none; + color: white; + border-color: #991121; + box-shadow: none; + text-shadow: none; + icon-shadow: none; } + .titlebar .button.destructive-action:hover, .titlebar .button.flat.destructive-action:hover, .titlebar .button.titlebutton.appmenu.destructive-action:hover, + .header-bar .button.destructive-action:hover, + .header-bar .button.flat.destructive-action:hover, + .header-bar .button.titlebutton.appmenu.destructive-action:hover { + -gtk-image-effect: highlight; + background-color: #b01326; + background-image: none; + color: white; + border-color: #b01326; + box-shadow: none; + text-shadow: none; + icon-shadow: none; } + .titlebar .button.destructive-action:hover:backdrop, .titlebar .button.flat.destructive-action:hover:backdrop, .titlebar .button.titlebutton.appmenu.destructive-action:hover:backdrop, + .header-bar .button.destructive-action:hover:backdrop, + .header-bar .button.flat.destructive-action:hover:backdrop, + .header-bar .button.titlebutton.appmenu.destructive-action:hover:backdrop { + color: white; + background-color: #c7162b; + background-image: none; + border-color: #c7162b; + box-shadow: none; } + .titlebar .button.destructive-action:active, .titlebar .button.destructive-action:checked, .titlebar .button.flat.destructive-action:active, .titlebar .button.flat.destructive-action:checked, .titlebar .button.titlebutton.appmenu.destructive-action:active, .titlebar .button.titlebutton.appmenu.destructive-action:checked, + .header-bar .button.destructive-action:active, + .header-bar .button.destructive-action:checked, + .header-bar .button.flat.destructive-action:active, + .header-bar .button.flat.destructive-action:checked, + .header-bar .button.titlebutton.appmenu.destructive-action:active, + .header-bar .button.titlebutton.appmenu.destructive-action:checked { + box-shadow: none; + border-color: #6b0c17; + border-top-color: #6b0c17; + background-color: #6b0c17; + background-image: none; + text-shadow: none; + icon-shadow: none; } + .titlebar .button.destructive-action:insensitive, .titlebar .button.flat.destructive-action:insensitive, .titlebar .button.titlebutton.appmenu.destructive-action:insensitive, + .header-bar .button.destructive-action:insensitive, + .header-bar .button.flat.destructive-action:insensitive, + .header-bar .button.titlebutton.appmenu.destructive-action:insensitive { + background-color: rgba(153, 17, 33, 0.9); + background-image: none; + border-color: rgba(153, 17, 33, 0.9); + box-shadow: none; } + .titlebar .button.destructive-action:insensitive .label, .titlebar .button.destructive-action:insensitive, .titlebar .button.flat.destructive-action:insensitive .label, .titlebar .button.flat.destructive-action:insensitive, .titlebar .button.titlebutton.appmenu.destructive-action:insensitive .label, .titlebar .button.titlebutton.appmenu.destructive-action:insensitive, + .header-bar .button.destructive-action:insensitive .label, + .header-bar .button.destructive-action:insensitive, + .header-bar .button.flat.destructive-action:insensitive .label, + .header-bar .button.flat.destructive-action:insensitive, + .header-bar .button.titlebutton.appmenu.destructive-action:insensitive .label, + .header-bar .button.titlebutton.appmenu.destructive-action:insensitive { + color: rgba(209, 148, 155, 0.7); } + .titlebar .button.destructive-action:insensitive:active, .titlebar .button.destructive-action:insensitive:checked, .titlebar .button.flat.destructive-action:insensitive:active, .titlebar .button.flat.destructive-action:insensitive:checked, .titlebar .button.titlebutton.appmenu.destructive-action:insensitive:active, .titlebar .button.titlebutton.appmenu.destructive-action:insensitive:checked, + .header-bar .button.destructive-action:insensitive:active, + .header-bar .button.destructive-action:insensitive:checked, + .header-bar .button.flat.destructive-action:insensitive:active, + .header-bar .button.flat.destructive-action:insensitive:checked, + .header-bar .button.titlebutton.appmenu.destructive-action:insensitive:active, + .header-bar .button.titlebutton.appmenu.destructive-action:insensitive:checked { + background-color: #892b36; + background-image: none; + border-color: #892b36; + box-shadow: none; } + .titlebar .button.destructive-action:insensitive:active .label, .titlebar .button.destructive-action:insensitive:active, .titlebar .button.destructive-action:insensitive:checked .label, .titlebar .button.destructive-action:insensitive:checked, .titlebar .button.flat.destructive-action:insensitive:active .label, .titlebar .button.flat.destructive-action:insensitive:active, .titlebar .button.flat.destructive-action:insensitive:checked .label, .titlebar .button.flat.destructive-action:insensitive:checked, .titlebar .button.titlebutton.appmenu.destructive-action:insensitive:active .label, .titlebar .button.titlebutton.appmenu.destructive-action:insensitive:active, .titlebar .button.titlebutton.appmenu.destructive-action:insensitive:checked .label, .titlebar .button.titlebutton.appmenu.destructive-action:insensitive:checked, + .header-bar .button.destructive-action:insensitive:active .label, + .header-bar .button.destructive-action:insensitive:active, + .header-bar .button.destructive-action:insensitive:checked .label, + .header-bar .button.destructive-action:insensitive:checked, + .header-bar .button.flat.destructive-action:insensitive:active .label, + .header-bar .button.flat.destructive-action:insensitive:active, + .header-bar .button.flat.destructive-action:insensitive:checked .label, + .header-bar .button.flat.destructive-action:insensitive:checked, + .header-bar .button.titlebutton.appmenu.destructive-action:insensitive:active .label, + .header-bar .button.titlebutton.appmenu.destructive-action:insensitive:active, + .header-bar .button.titlebutton.appmenu.destructive-action:insensitive:checked .label, + .header-bar .button.titlebutton.appmenu.destructive-action:insensitive:checked { + color: #d0aaaf; } + .titlebar .button.destructive-action:backdrop, .titlebar .button.flat.destructive-action:backdrop, .titlebar .button.titlebutton.appmenu.destructive-action:backdrop, + .header-bar .button.destructive-action:backdrop, + .header-bar .button.flat.destructive-action:backdrop, + .header-bar .button.titlebutton.appmenu.destructive-action:backdrop { + -gtk-image-effect: dim; + background-color: #b01326; + background-image: none; + border-color: #b01326; + box-shadow: none; } + .titlebar .button.destructive-action:backdrop .label, .titlebar .button.destructive-action:backdrop, .titlebar .button.flat.destructive-action:backdrop .label, .titlebar .button.flat.destructive-action:backdrop, .titlebar .button.titlebutton.appmenu.destructive-action:backdrop .label, .titlebar .button.titlebutton.appmenu.destructive-action:backdrop, + .header-bar .button.destructive-action:backdrop .label, + .header-bar .button.destructive-action:backdrop, + .header-bar .button.flat.destructive-action:backdrop .label, + .header-bar .button.flat.destructive-action:backdrop, + .header-bar .button.titlebutton.appmenu.destructive-action:backdrop .label, + .header-bar .button.titlebutton.appmenu.destructive-action:backdrop { + color: #dfa1a8; } + .titlebar .button.destructive-action:backdrop:active, .titlebar .button.destructive-action:backdrop:checked, .titlebar .button.flat.destructive-action:backdrop:active, .titlebar .button.flat.destructive-action:backdrop:checked, .titlebar .button.titlebutton.appmenu.destructive-action:backdrop:active, .titlebar .button.titlebutton.appmenu.destructive-action:backdrop:checked, + .header-bar .button.destructive-action:backdrop:active, + .header-bar .button.destructive-action:backdrop:checked, + .header-bar .button.flat.destructive-action:backdrop:active, + .header-bar .button.flat.destructive-action:backdrop:checked, + .header-bar .button.titlebutton.appmenu.destructive-action:backdrop:active, + .header-bar .button.titlebutton.appmenu.destructive-action:backdrop:checked { + background-color: #620b15; + background-image: none; + border-color: #620b15; + box-shadow: none; } + .titlebar .button.destructive-action:backdrop:active .label, .titlebar .button.destructive-action:backdrop:active, .titlebar .button.destructive-action:backdrop:checked .label, .titlebar .button.destructive-action:backdrop:checked, .titlebar .button.flat.destructive-action:backdrop:active .label, .titlebar .button.flat.destructive-action:backdrop:active, .titlebar .button.flat.destructive-action:backdrop:checked .label, .titlebar .button.flat.destructive-action:backdrop:checked, .titlebar .button.titlebutton.appmenu.destructive-action:backdrop:active .label, .titlebar .button.titlebutton.appmenu.destructive-action:backdrop:active, .titlebar .button.titlebutton.appmenu.destructive-action:backdrop:checked .label, .titlebar .button.titlebutton.appmenu.destructive-action:backdrop:checked, + .header-bar .button.destructive-action:backdrop:active .label, + .header-bar .button.destructive-action:backdrop:active, + .header-bar .button.destructive-action:backdrop:checked .label, + .header-bar .button.destructive-action:backdrop:checked, + .header-bar .button.flat.destructive-action:backdrop:active .label, + .header-bar .button.flat.destructive-action:backdrop:active, + .header-bar .button.flat.destructive-action:backdrop:checked .label, + .header-bar .button.flat.destructive-action:backdrop:checked, + .header-bar .button.titlebutton.appmenu.destructive-action:backdrop:active .label, + .header-bar .button.titlebutton.appmenu.destructive-action:backdrop:active, + .header-bar .button.titlebutton.appmenu.destructive-action:backdrop:checked .label, + .header-bar .button.titlebutton.appmenu.destructive-action:backdrop:checked { + color: #e0ced0; } + .titlebar .button.destructive-action:backdrop:insensitive, .titlebar .button.flat.destructive-action:backdrop:insensitive, .titlebar .button.titlebutton.appmenu.destructive-action:backdrop:insensitive, + .header-bar .button.destructive-action:backdrop:insensitive, + .header-bar .button.flat.destructive-action:backdrop:insensitive, + .header-bar .button.titlebutton.appmenu.destructive-action:backdrop:insensitive { + background-color: rgba(153, 17, 33, 0.9); + background-image: none; + border-color: rgba(153, 17, 33, 0.9); + box-shadow: none; } + .titlebar .button.destructive-action:backdrop:insensitive .label, .titlebar .button.destructive-action:backdrop:insensitive, .titlebar .button.flat.destructive-action:backdrop:insensitive .label, .titlebar .button.flat.destructive-action:backdrop:insensitive, .titlebar .button.titlebutton.appmenu.destructive-action:backdrop:insensitive .label, .titlebar .button.titlebutton.appmenu.destructive-action:backdrop:insensitive, + .header-bar .button.destructive-action:backdrop:insensitive .label, + .header-bar .button.destructive-action:backdrop:insensitive, + .header-bar .button.flat.destructive-action:backdrop:insensitive .label, + .header-bar .button.flat.destructive-action:backdrop:insensitive, + .header-bar .button.titlebutton.appmenu.destructive-action:backdrop:insensitive .label, + .header-bar .button.titlebutton.appmenu.destructive-action:backdrop:insensitive { + color: rgba(194, 111, 121, 0.935); } + .titlebar .button.destructive-action:backdrop:insensitive:active, .titlebar .button.destructive-action:backdrop:insensitive:checked, .titlebar .button.flat.destructive-action:backdrop:insensitive:active, .titlebar .button.flat.destructive-action:backdrop:insensitive:checked, .titlebar .button.titlebutton.appmenu.destructive-action:backdrop:insensitive:active, .titlebar .button.titlebutton.appmenu.destructive-action:backdrop:insensitive:checked, + .header-bar .button.destructive-action:backdrop:insensitive:active, + .header-bar .button.destructive-action:backdrop:insensitive:checked, + .header-bar .button.flat.destructive-action:backdrop:insensitive:active, + .header-bar .button.flat.destructive-action:backdrop:insensitive:checked, + .header-bar .button.titlebutton.appmenu.destructive-action:backdrop:insensitive:active, + .header-bar .button.titlebutton.appmenu.destructive-action:backdrop:insensitive:checked { + background-color: #540912; + background-image: none; + border-color: #540912; } + .titlebar .button.destructive-action:backdrop:insensitive:active .label, .titlebar .button.destructive-action:backdrop:insensitive:checked .label, .titlebar .button.flat.destructive-action:backdrop:insensitive:active .label, .titlebar .button.flat.destructive-action:backdrop:insensitive:checked .label, .titlebar .button.titlebutton.appmenu.destructive-action:backdrop:insensitive:active .label, .titlebar .button.titlebutton.appmenu.destructive-action:backdrop:insensitive:checked .label, + .header-bar .button.destructive-action:backdrop:insensitive:active .label, + .header-bar .button.destructive-action:backdrop:insensitive:checked .label, + .header-bar .button.flat.destructive-action:backdrop:insensitive:active .label, + .header-bar .button.flat.destructive-action:backdrop:insensitive:checked .label, + .header-bar .button.titlebutton.appmenu.destructive-action:backdrop:insensitive:active .label, + .header-bar .button.titlebutton.appmenu.destructive-action:backdrop:insensitive:checked .label { + color: #905f65; } + .titlebar .linked:not(.path-bar):not(.stack-switcher):not(buttonbox) .button, .titlebar .linked:not(.vertical) entry, + .header-bar .linked:not(.path-bar):not(.stack-switcher):not(buttonbox) .button, + .header-bar .linked:not(.vertical) entry { + border-width: 1px; + border-style: solid; + border-radius: 4px; + outline-radius: 4px; } + .titlebar .linked:not(.path-bar):not(.stack-switcher):not(buttonbox) .button:focus + entry, .titlebar .linked:not(.vertical) entry:focus + entry, + .header-bar .linked:not(.path-bar):not(.stack-switcher):not(buttonbox) .button:focus + entry, + .header-bar .linked:not(.vertical) entry:focus + entry { + border-left-color: #454545; } + .titlebar .linked:not(.path-bar):not(.stack-switcher):not(buttonbox) .button:focus + button, .titlebar .linked:not(.vertical) entry:focus + button, + .header-bar .linked:not(.path-bar):not(.stack-switcher):not(buttonbox) .button:focus + button, + .header-bar .linked:not(.vertical) entry:focus + button { + border-left-color: transparent; } + .titlebar .linked:not(.path-bar):not(.stack-switcher):not(buttonbox) .button:focus + entry:insensitive, .titlebar .linked:not(.path-bar):not(.stack-switcher):not(buttonbox) .button:focus + button:insensitive, .titlebar .linked:not(.vertical) entry:focus + entry:insensitive, .titlebar .linked:not(.vertical) entry:focus + button:insensitive, + .header-bar .linked:not(.path-bar):not(.stack-switcher):not(buttonbox) .button:focus + entry:insensitive, + .header-bar .linked:not(.path-bar):not(.stack-switcher):not(buttonbox) .button:focus + button:insensitive, + .header-bar .linked:not(.vertical) entry:focus + entry:insensitive, + .header-bar .linked:not(.vertical) entry:focus + button:insensitive { + border-left-color: transparent; } + .titlebar .linked:not(.path-bar):not(.stack-switcher):not(buttonbox) .button:focus + entry:backdrop, .titlebar .linked:not(.path-bar):not(.stack-switcher):not(buttonbox) .button:focus + button:backdrop, .titlebar .linked:not(.vertical) entry:focus + entry:backdrop, .titlebar .linked:not(.vertical) entry:focus + button:backdrop, + .header-bar .linked:not(.path-bar):not(.stack-switcher):not(buttonbox) .button:focus + entry:backdrop, + .header-bar .linked:not(.path-bar):not(.stack-switcher):not(buttonbox) .button:focus + button:backdrop, + .header-bar .linked:not(.vertical) entry:focus + entry:backdrop, + .header-bar .linked:not(.vertical) entry:focus + button:backdrop { + border-left-color: #0b0b0b; } + .titlebar .linked:not(.path-bar):not(.stack-switcher):not(buttonbox) .button:not(:last-child), .titlebar .linked:not(.vertical) entry:not(:last-child), + .header-bar .linked:not(.path-bar):not(.stack-switcher):not(buttonbox) .button:not(:last-child), + .header-bar .linked:not(.vertical) entry:not(:last-child) { + margin-right: 4px; } + .titlebar .path-bar.linked .button, .titlebar .stack-switcher.linked .button, + .header-bar .path-bar.linked .button, + .header-bar .stack-switcher.linked .button { + background-color: #3f3c3c; + color: #CCC; } + .titlebar .path-bar.linked .button:hover, .titlebar .stack-switcher.linked .button:hover, + .header-bar .path-bar.linked .button:hover, + .header-bar .stack-switcher.linked .button:hover { + box-shadow: inset 0 -2px rgba(204, 204, 204, 0.5); } + .titlebar .path-bar.linked .button:hover:backdrop, .titlebar .stack-switcher.linked .button:hover:backdrop, + .header-bar .path-bar.linked .button:hover:backdrop, + .header-bar .stack-switcher.linked .button:hover:backdrop { + box-shadow: inset 0 -2px rgba(204, 204, 204, 0.3); } + .titlebar .path-bar.linked .button:active, .titlebar .stack-switcher.linked .button:active, + .header-bar .path-bar.linked .button:active, + .header-bar .stack-switcher.linked .button:active { + box-shadow: inset 0 -2px #CCC; } + .titlebar .path-bar.linked .button:checked, .titlebar .stack-switcher.linked .button:checked, + .header-bar .path-bar.linked .button:checked, + .header-bar .stack-switcher.linked .button:checked { + color: #FFFFFF; + box-shadow: inset 0 -2px #e95420; } + .titlebar .path-bar.linked .button:checked:hover, .titlebar .stack-switcher.linked .button:checked:hover, + .header-bar .path-bar.linked .button:checked:hover, + .header-bar .stack-switcher.linked .button:checked:hover { + box-shadow: inset 0 -2px #eb6536; } + .titlebar .path-bar.linked .button:backdrop, .titlebar .stack-switcher.linked .button:backdrop, + .header-bar .path-bar.linked .button:backdrop, + .header-bar .stack-switcher.linked .button:backdrop { + background-color: #4c4949; + color: #bcbbbb; } + .titlebar .path-bar.linked .button:backdrop:checked, .titlebar .stack-switcher.linked .button:backdrop:checked, + .header-bar .path-bar.linked .button:backdrop:checked, + .header-bar .stack-switcher.linked .button:backdrop:checked { + color: #bcbbbb; + box-shadow: inset 0 -2px #eb6637; } + .titlebar buttonbox.linked .button, + .titlebar buttonbox.linked .button.text-button ~ .button, + .header-bar buttonbox.linked .button, + .header-bar buttonbox.linked .button.text-button ~ .button { + border-style: solid; + border-color: #3D3D3D; } + .titlebar buttonbox.linked .button:not(:only-child), + .titlebar buttonbox.linked .button.text-button ~ .button:not(:only-child), + .header-bar buttonbox.linked .button:not(:only-child), + .header-bar buttonbox.linked .button.text-button ~ .button:not(:only-child) { + border-width: 1px 0; } + .titlebar buttonbox.linked .button:first-child, + .titlebar buttonbox.linked .button.text-button ~ .button:first-child, + .header-bar buttonbox.linked .button:first-child, + .header-bar buttonbox.linked .button.text-button ~ .button:first-child { + border-width: 1px 0 1px 1px; } + .titlebar buttonbox.linked .button:last-child, + .titlebar buttonbox.linked .button.text-button ~ .button:last-child, + .header-bar buttonbox.linked .button:last-child, + .header-bar buttonbox.linked .button.text-button ~ .button:last-child { + border-width: 1px 1px 1px 0; } + .titlebar buttonbox.linked .button:backdrop, .titlebar buttonbox.linked .button:backdrop:checked, + .titlebar buttonbox.linked .button.text-button ~ .button:backdrop, + .titlebar buttonbox.linked .button.text-button ~ .button:backdrop:checked, + .header-bar buttonbox.linked .button:backdrop, + .header-bar buttonbox.linked .button:backdrop:checked, + .header-bar buttonbox.linked .button.text-button ~ .button:backdrop, + .header-bar buttonbox.linked .button.text-button ~ .button:backdrop:checked { + border-color: #454545; } + .titlebar .stack-switcher.linked, + .header-bar .stack-switcher.linked { + border-width: 0 8px; + border-style: solid; + border-color: #3f3c3c; + border-radius: 4px; } + .titlebar .stack-switcher.linked:backdrop, + .header-bar .stack-switcher.linked:backdrop { + border-color: #4c4949; } + .titlebar .stack-switcher.linked .button, + .header-bar .stack-switcher.linked .button { + margin: 0; + border: none; } + .titlebar .stack-switcher.linked .button:dir(rtl), .titlebar .stack-switcher.linked .button:dir(ltr), + .header-bar .stack-switcher.linked .button:dir(rtl), + .header-bar .stack-switcher.linked .button:dir(ltr) { + border-radius: 0; + outline-radius: 0; } + .titlebar .stack-switcher.linked .button:insensitive:checked, + .header-bar .stack-switcher.linked .button:insensitive:checked { + background-color: #3f3c3c; } + .titlebar .stack-switcher.linked .button:insensitive:checked:backdrop, + .header-bar .stack-switcher.linked .button:insensitive:checked:backdrop { + background-color: #393636; } + .titlebar .path-bar.linked .button.slider-button, + .header-bar .path-bar.linked .button.slider-button { + box-shadow: none; } + +/************ + * Pathbars * + ************/ +.titlebar .stack-switcher.linked .button, +.header-bar .stack-switcher.linked .button, .titlebar .path-bar.linked .button, +.header-bar .path-bar.linked .button { + transition: 300ms ease; + transition-property: box-shadow, color; + border-color: transparent; } + .titlebar .stack-switcher.linked .button, + .header-bar .stack-switcher.linked .button, .titlebar .path-bar.linked .button, + .header-bar .path-bar.linked .button { + box-shadow: inset 0 -2px transparent; } + +.path-bar .button { + padding: 5px 6px 6px; } + .path-bar .button:first-child { + padding-left: 8px; } + .path-bar .button:last-child { + padding-right: 8px; } + .path-bar .button:only-child { + padding-left: 12px; + padding-right: 12px; } + .path-bar .button .label:last-child { + padding-left: 2px; } + .path-bar .button .label:first-child { + padding-right: 2px; } + .path-bar .button .label:only-child { + padding-right: 0; + padding-left: 0; } + .path-bar .button GtkImage { + padding-top: 1px; } + +/************** + * Tree Views * + **************/ +GtkTreeView.view { + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ''; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ''; + -GtkTreeView-expander-size: 16; + border-left-color: #9e9e9e; + border-top-color: #F5F6F7; } + GtkTreeView.view:selected { + border-radius: 0; } + GtkTreeView.view:selected, GtkTreeView.view:backdrop:selected { + border-left-color: #f4aa90; + border-top-color: rgba(61, 61, 61, 0.1); } + GtkTreeView.view:insensitive { + color: #999a9a; } + GtkTreeView.view:insensitive:selected { + color: #f29879; } + GtkTreeView.view:insensitive:selected:backdrop { + color: #ec835f; } + GtkTreeView.view:insensitive:backdrop { + color: #c2c8ce; } + GtkTreeView.view.separator:backdrop { + color: rgba(0, 0, 0, 0.1); } + GtkTreeView.view:backdrop { + border-left-color: #c1c2c4; + border-top: #edeef0; } + GtkTreeView.view.dnd { + border-style: solid none; + border-width: 1px; + border-color: #93492f; } + GtkTreeView.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + color: #777777; } + GtkTreeView.view.expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + GtkTreeView.view.expander:hover { + color: #3D3D3D; } + GtkTreeView.view.expander:selected { + color: #f8ccbc; } + GtkTreeView.view.expander:selected:hover { + color: #FFFFFF; } + GtkTreeView.view.expander:selected:backdrop { + color: #efc3b3; } + GtkTreeView.view.expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + GtkTreeView.view.expander:backdrop { + color: #b1b2b2; } + GtkTreeView.view.progressbar { + color: #FFFFFF; + border: 1px solid #66220a; + border-radius: 4px; + background-image: linear-gradient(to bottom, #e95420, #c34113); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px rgba(0, 0, 0, 0.2); } + GtkTreeView.view.progressbar:selected { + color: #e95420; + box-shadow: none; + background-image: linear-gradient(to bottom, #FFFFFF, #e6e6e6); } + GtkTreeView.view.progressbar:selected:backdrop { + color: #e95420; + border-color: #66220a; + background-color: #f2f2f2; } + GtkTreeView.view.progressbar:backdrop { + color: #f2f2f2; + background-image: none; + box-shadow: none; } + GtkTreeView.view.trough { + background-color: rgba(61, 61, 61, 0.1); + border-radius: 4px; } + GtkTreeView.view.trough:selected { + background-color: rgba(255, 255, 255, 0.3); + border-width: 1px 0; + border-style: solid; + border-color: #e95420; } + +column-header .button { + color: #9e9e9e; + background-color: #FFFFFF; + font-weight: bold; + text-shadow: none; + box-shadow: none; } + column-header .button:hover { + color: #6e6e6e; + box-shadow: none; + transition: none; } + column-header .button:active { + color: #3D3D3D; + transition: none; } + +column-header:last-child .button, column-header:last-child .button:backdrop, column-header:last-child.button, column-header:last-child.button:backdrop { + border-right-style: none; } + + +column-header.button.dnd:hover, +column-header.button.dnd:selected, +column-header.button.dnd:active, column-header .button.dnd, +column-header.button.dnd { + transition: none; + color: #e95420; + box-shadow: inset 1px 1px 0 1px #e95420, inset -1px 0 0 1px #e95420, inset 1px 1px #FFFFFF, inset -1px 0 #FFFFFF; } + +column-header .button, column-header .button:hover, column-header .button:active { + padding: 3px 6px; + border-style: none solid solid none; + border-radius: 0; + background-image: none; + border-color: #F5F6F7; + text-shadow: none; } + column-header .button:insensitive { + border-color: #F5F6F7; + background-image: none; } + column-header .button:backdrop { + border-color: #edeef0; + border-style: none solid solid none; + color: #c1c2c4; + background-image: none; + background-color: #f2f2f2; } + column-header .button:backdrop:insensitive { + border-color: #edeef0; + background-image: none; } + +/********* + * Menus * + *********/ +.menubar { + -GtkWidget-window-dragging: true; + background-color: #323030; + border-color: rgba(11, 11, 11, 0.2); + border-style: solid; + border-width: 0 1px; + box-shadow: inset 0 -1px rgba(11, 11, 11, 0.2); + color: #CCC; + padding: 0px; } + .menubar:backdrop { + background-color: #323030; + color: #9e9d9d; } + .menubar:backdrop .label { + color: #959697; } + .menubar > .menuitem { + transition: 100ms ease; + transition-property: box-shadow, color; + padding: 4px 8px; } + .menubar > .menuitem .menu { + border-radius: 0 0 4px 4px; } + .menubar > .menuitem .menu .menu { + border-radius: 4px; } + .menubar > .menuitem:hover { + box-shadow: inset 0 -3px #e95420; + color: #F7F7F7; } + .menubar > .menuitem:insensitive { + color: #959494; + box-shadow: none; } + +.menu { + margin: 4px; + padding: 0px; + background-color: #FFFFFF; + color: #2D2D2D; + border: 1px solid #c2c8ce; + border-radius: 4px; } + .csd .menu { + border: none; } + .menu:backdrop { + background-color: #f2f2f2; + color: rgba(45, 45, 45, 0.8); } + .menu .menuitem { + text-shadow: none; + padding: 4px; + border-radius: 0; } + .menu .menuitem:hover { + color: inherit; + background-color: rgba(61, 61, 61, 0.15); } + .menu .menuitem:insensitive { + color: #999a9a; } + .menu .menuitem:insensitive:backdrop { + color: #c2c8ce; } + .menu .menuitem:backdrop, .menu .menuitem:backdrop:hover { + color: #959697; + background-color: transparent; } + .menu .menuitem.arrow { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .menu .menuitem.arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .menu.button { + border-style: none; + border-radius: 0; } + .menu.button.top { + border-bottom: 1px solid #ececec; } + .menu.button.bottom { + border-top: 1px solid #ececec; } + .menu.button:hover { + background-color: #ececec; } + .menu.button:insensitive { + color: transparent; + background-color: transparent; + border-color: transparent; } + +.menuitem .accelerator { + color: alpha(currentColor,0.55); } + +/*************** + * Popovers * + ***************/ +.popover { + padding: 2px; + border: 1px solid #c2c8ce; + border-radius: 5px; + background-color: #fafbfb; + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); } + .popover:backdrop { + box-shadow: none; } + .popover > .list, + .popover > .view, + .popover > .toolbar, + .popover > .inline-toolbar, + .popover > .search-bar, + .popover > .location-bar, .popover.osd > .toolbar { + border-style: none; + background-color: transparent; } + .popover .button.flat, + .popover .button.flat:hover { + text-shadow: none; + transition: none; } + +/***************** + * Notebooks and * + * Tabs * + *****************/ +.notebook { + background-color: #FFFFFF; + border-color: rgba(194, 200, 206, 0.8); + border-width: 1px; + padding: 1px; + -GtkNotebook-initial-gap: 10; + -GtkNotebook-arrow-spacing: 5; + -GtkNotebook-tab-curvature: 0; + -GtkNotebook-tab-overlap: -8; + -GtkNotebook-has-tab-gap: false; + -GtkWidget-focus-padding: 0; + -GtkWidget-focus-line-width: 0; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .notebook:backdrop { + background-color: #f2f2f2; } + .notebook.frame { + border: 1px solid #c2c8ce; } + .notebook.frame.top { + border-top-width: 0; } + .notebook.frame.bottom { + border-bottom-width: 0; } + .notebook.frame.right { + border-right-width: 0; } + .notebook.frame.left { + border-left-width: 0; } + .notebook.frame:backdrop { + border-color: #bac0c7; } + .notebook.header { + background-color: #F7F7F7; } + .notebook.header.frame { + border: 1px solid #c2c8ce; } + .notebook.header.frame.top { + border-bottom-width: 0; } + .notebook.header.frame.bottom { + border-top-width: 0; } + .notebook.header.frame.right { + border-left-width: 0; } + .notebook.header.frame.left { + border-right-width: 0; } + .notebook.header.frame:backdrop { + border-color: #bac0c7; } + .notebook.header.top { + padding-top: 4px; + margin-bottom: -2px; } + .notebook.header.bottom { + padding-bottom: 4px; + margin-top: -2px; } + .notebook.header.left { + padding-left: 4px; + margin-right: -2px; } + .notebook.header.right { + padding-right: 4px; + margin-left: -2px; } + .notebook.header.top, .notebook.header.bottom, .notebook.header.right, .notebook.header.left { + box-shadow: none; } + .notebook.header.top:backdrop, .notebook.header.bottom:backdrop, .notebook.header.right:backdrop, .notebook.header.left:backdrop { + box-shadow: none; } + .notebook.header:backdrop { + background-color: #edeef0; + box-shadow: none; } + .notebook tab { + border-width: 0; + border-style: solid; + border-color: transparent; + background-color: transparent; + padding: 4px 12px; + outline-offset: -5px; + outline-style: dashed; + outline-radius: 4px; + color: rgba(45, 45, 45, 0.7); + border: 1px solid transparent; + /* works for testnotebookdnd, but there's a superfluous border + in gedit or web, commented out for now, needs gtk fixes + &.reorderable-page { + &.top { + padding-top: ($vt_vpadding - 1px); + border-top-width: 1px; + border-left-width: 1px; + border-right-width: 1px; + } + &.bottom { + padding-bottom: ($vt_vpadding - 1px); + border-bottom-width: 1px; + border-left-width: 1px; + border-right-width: 1px; + } + &.left { + padding-left: ($ht_hpadding - 1px); + border-left-width: 1px; + border-top-width: 1px; + border-bottom-width: 1px; + } + &.right { + padding-right: ($ht_hpadding - 1px); + border-right-width: 1px; + border-top-width: 1px; + border-bottom-width: 1px; + } + } + */ } + .notebook tab.top, .notebook tab.bottom { + padding: 8px 20px; } + .notebook tab.left, .notebook tab.right { + padding: 5px 20px; } + .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { + padding-left: 12px; + padding-right: 12px; + border-left-width: 1px; + border-right-width: 1px; } + .notebook tab.reorderable-page.left, .notebook tab.reorderable-page.right { + border-bottom-width: 1px; + border-top-width: 1px; } + .notebook tab.top { + border-radius: 4px 4px 0 0; } + .notebook tab.top:active { + border-bottom-style: none; } + .notebook tab.bottom { + border-top-width: 3px; + border-radius: 0 0 4px 4px; } + .notebook tab.bottom:active { + border-top-style: none; } + .notebook tab.left { + border-right-width: 3px; + border-radius: 4px 0 0 4px; } + .notebook tab.left:active { + border-right-style: none; } + .notebook tab.right { + border-left-width: 3px; + border-radius: 0 4px 4px 0; } + .notebook tab.right:active { + border-left-style: none; } + .notebook tab:hover:not(:active):not(:backdrop), .notebook tab.prelight-page { + background-color: #fefefe; + border-color: rgba(225, 228, 231, 0.88); } + .notebook tab:backdrop { + background-color: transparent; + border-color: transparent; + color: #b8b9bb; } + .notebook tab:backdrop:hover { + border-color: #d1d5da; } + .notebook tab:active, .notebook tab.active-page, .notebook tab:backdrop:active { + color: #3D3D3D; + font-weight: 500; + background-color: #FFFFFF; + border-color: rgba(194, 200, 206, 0.8); } + .notebook tab:backdrop:active { + background-color: #f2f2f2; + border-color: #bac0c7; + color: #959697; } + .notebook tab.reorderable-page.top { + border-color: transparent; } + .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page { + border-color: rgba(194, 200, 206, 0.3); + border-bottom-color: #c2c8ce; + background-color: rgba(245, 246, 247, 0.2); } + .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page { + background-color: rgba(245, 246, 247, 0.5); + border-color: rgba(194, 200, 206, 0.5); + border-bottom-color: #e95420; } + .notebook tab.reorderable-page.top:active:hover, .notebook tab.reorderable-page.top.active-page:hover { + background-color: rgba(245, 246, 247, 0.7); } + .notebook tab.reorderable-page.top:active:backdrop, .notebook tab.reorderable-page.top.active-page:backdrop { + border-color: #bac0c7; + background-color: #edeef0; + border-bottom-color: #e95420; } + .notebook tab.reorderable-page.top:backdrop { + border-color: transparent; + background-color: transparent; } + .notebook tab.reorderable-page.bottom { + border-color: transparent; } + .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page { + border-color: rgba(194, 200, 206, 0.3); + border-top-color: #c2c8ce; + background-color: rgba(245, 246, 247, 0.2); } + .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page { + background-color: rgba(245, 246, 247, 0.5); + border-color: rgba(194, 200, 206, 0.5); + border-top-color: #e95420; } + .notebook tab.reorderable-page.bottom:active:hover, .notebook tab.reorderable-page.bottom.active-page:hover { + background-color: rgba(245, 246, 247, 0.7); } + .notebook tab.reorderable-page.bottom:active:backdrop, .notebook tab.reorderable-page.bottom.active-page:backdrop { + border-color: #bac0c7; + background-color: #edeef0; + border-top-color: #e95420; } + .notebook tab.reorderable-page.bottom:backdrop { + border-color: transparent; + background-color: transparent; } + .notebook tab.reorderable-page.left { + border-color: transparent; } + .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page { + border-color: rgba(194, 200, 206, 0.3); + border-right-color: #c2c8ce; + background-color: rgba(245, 246, 247, 0.2); } + .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page { + background-color: rgba(245, 246, 247, 0.5); + border-color: rgba(194, 200, 206, 0.5); + border-right-color: #e95420; } + .notebook tab.reorderable-page.left:active:hover, .notebook tab.reorderable-page.left.active-page:hover { + background-color: rgba(245, 246, 247, 0.7); } + .notebook tab.reorderable-page.left:active:backdrop, .notebook tab.reorderable-page.left.active-page:backdrop { + border-color: #bac0c7; + background-color: #edeef0; + border-right-color: #e95420; } + .notebook tab.reorderable-page.left:backdrop { + border-color: transparent; + background-color: transparent; } + .notebook tab.reorderable-page.right { + border-color: transparent; } + .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page { + border-color: rgba(194, 200, 206, 0.3); + border-left-color: #c2c8ce; + background-color: rgba(245, 246, 247, 0.2); } + .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page { + background-color: rgba(245, 246, 247, 0.5); + border-color: rgba(194, 200, 206, 0.5); + border-left-color: #e95420; } + .notebook tab.reorderable-page.right:active:hover, .notebook tab.reorderable-page.right.active-page:hover { + background-color: rgba(245, 246, 247, 0.7); } + .notebook tab.reorderable-page.right:active:backdrop, .notebook tab.reorderable-page.right.active-page:backdrop { + border-color: #bac0c7; + background-color: #edeef0; + border-left-color: #e95420; } + .notebook tab.reorderable-page.right:backdrop { + border-color: transparent; + background-color: transparent; } + .notebook tab .label { + padding: 0 2px; + font-weight: inherit; + color: #999a9a; } + .notebook tab .label:backdrop, .notebook tab .label.prelight-page:backdrop { + color: #acafb3; } + .notebook tab .label.active-page { + font-weight: 500; + padding-bottom: 1px; } + .notebook tab .prelight-page .label, .notebook tab .label.prelight-page { + color: #6b6c6c; } + .notebook tab .prelight-page .label:backdrop, .notebook tab .label.prelight-page:backdrop { + color: #acafb3; } + .notebook tab .active-page .label, .notebook tab .label.active-page { + color: #3D3D3D; } + .notebook tab .active-page .label:backdrop, .notebook tab .label.active-page:backdrop { + color: #959697; } + .notebook tab .button { + padding: 0; + border: 1px solid transparent; + icon-shadow: none; + transition: none; + color: rgba(61, 61, 61, 0.3); } + .notebook tab .button:hover { + color: #3D3D3D; + -gtk-image-effect: highlight; + background-color: white; + background-image: none; + color: #3D3D3D; + border-color: white; + box-shadow: none; + text-shadow: none; + icon-shadow: none; + background-image: none; + box-shadow: none; } + .notebook tab .button:active { + box-shadow: inset 0 1px 1px 0px rgba(0, 0, 0, 0.05); + border-color: #c2c8ce; + border-top-color: #7b8896; + background-color: #eaecee; + background-image: none; + text-shadow: none; + icon-shadow: none; } + .notebook tab .button:backdrop { + color: rgba(149, 150, 151, 0.3); + border-color: transparent; } + .notebook tab .button > GtkImage { + padding: 2px; } + .notebook.arrow { + color: #999a9a; } + .notebook.arrow:hover { + color: #6b6c6c; } + .notebook.arrow:active { + color: #3D3D3D; } + .notebook.arrow:insensitive { + color: rgba(153, 154, 154, 0.3); } + .notebook.arrow:backdrop { + color: rgba(149, 150, 151, 0.4); } + .notebook.arrow:backdrop:insensitive { + color: #c2c8ce; } + +/************** + * Scrollbars * + **************/ +.scrollbar { + -GtkRange-slider-width: 13; + -GtkRange-trough-border: 0; + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; + -GtkScrollbar-min-slider-length: 42; + -GtkRange-stepper-spacing: 0; + -GtkRange-trough-under-steppers: 1; } + .scrollbar .button { + border: none; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) { + opacity: 0.4; + -GtkRange-slider-width: 5px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { + margin: 0; + background-color: #8bbdf0; + border: 1px solid white; + background-clip: padding-box; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .trough { + border-style: none; + background-color: transparent; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical .slider { + margin-top: 2px; + margin-bottom: 2px; } + .scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal .slider { + margin-left: 2px; + margin-right: 2px; } + .scrollbar.overlay-indicator.dragging, .scrollbar.overlay-indicator.hovering { + opacity: 0.7; } + .scrollbar .trough { + background-color: #e3e4e4; + border: 1px none #c2c8ce; } + .scrollbar .trough:backdrop { + background-color: #e4e7e9; + border-color: #bac0c7; } + .scrollbar .slider { + background-color: #8bbdf0; } + .scrollbar .slider:hover { + background-color: #001f9c; } + .scrollbar .slider:prelight:active { + background-color: #c34113; } + .scrollbar .slider:backdrop { + background-color: #cacbcd; } + .scrollbar .slider:insensitive { + background-color: transparent; } + .scrollbar .slider { + border-radius: 100px; + margin: 3px; } + .scrollbar.fine-tune .slider { + margin: 4px; } + .scrollbar.vertical .slider { + margin-left: 4px; } + .scrollbar.vertical .slider:dir(rtl) { + margin-left: 3px; + margin-right: 4px; } + .scrollbar.vertical.fine-tune .slider { + margin-left: 5px; } + .scrollbar.vertical.fine-tune .slider:dir(rtl) { + margin-left: 4px; + margin-right: 5px; } + .scrollbar.vertical .trough { + border-left-style: solid; } + .scrollbar.vertical .trough:dir(rtl) { + border-left-style: none; + border-right-style: solid; } + .scrollbar.horizontal .slider { + margin-top: 4px; } + .scrollbar.horizontal.fine-tune .slider { + margin-top: 5px; } + .scrollbar.horizontal .trough { + border-top-style: solid; } + +.scrollbars-junction, +.scrollbars-junction.frame { + border-color: transparent; + border-image: linear-gradient(to bottom, #c2c8ce 1px, transparent 1px) 0 0 0 1/0 1px stretch; + background-color: #e3e4e4; } + .scrollbars-junction:dir(rtl), + .scrollbars-junction.frame:dir(rtl) { + border-image-slice: 0 1 0 0; } + .scrollbars-junction:backdrop, + .scrollbars-junction.frame:backdrop { + border-image-source: linear-gradient(to bottom, #bac0c7 1px, transparent 1px); + background-color: #e4e7e9; } + +/********** + * Switch * + **********/ +GtkSwitch { + transition: all 0.4s ease-out; + -GtkSwitch-slider-width: 18px; + -GtkSwitch-slider-height: 18px; + font-weight: normal; + font-size: 0; + outline-color: rgba(233, 84, 32, 0.6); + outline-offset: -2px; + outline-radius: 4px; + box-shadow: inset 0 1px 1px 0 rgba(205, 205, 205, 0.8); } + GtkSwitch.trough { + border: 1px solid silver; + border-top-color: #9a9a9a; + border-radius: 5px; + color: transparent; + background-color: #CDCDCD; + background-image: none; + text-shadow: none; } + GtkSwitch.trough:hover { + -gtk-image-effect: highlight; + background-color: #dadada; } + GtkSwitch.trough:active { + background-color: #0e8420; + background-image: none; + color: transparent; + border-color: #0c6d1a; + border-top-color: #04280a; + box-shadow: inset 0 1px 1px 0 rgba(14, 132, 32, 0.8); + text-shadow: none; } + GtkSwitch.trough:active:hover { + -gtk-image-effect: highlight; + background-color: #109b26; } + GtkSwitch.trough:insensitive { + color: transparent; + border-color: rgba(0, 0, 0, 0.1); + background-image: none; + background-color: transparent; + box-shadow: none; + text-shadow: none; } + GtkSwitch.trough:insensitive:active { + background-color: rgba(205, 205, 205, 0.4); } + GtkSwitch.trough:backdrop { + color: transparent; + border-color: rgba(0, 0, 0, 0.1); + border-top-color: #b4b4b4; + background-color: #dadada; + background-image: none; + box-shadow: none; + text-shadow: none; + transition: all 200ms ease-out; } + GtkSwitch.trough:backdrop:hover { + background-color: #CDCDCD; } + GtkSwitch.trough:backdrop:hover:active { + background-color: #0e8420; } + GtkSwitch.trough:backdrop:active { + color: transparent; + border-color: #0c6d1a; + border-top-color: #095615; + background-color: #109b26; + background-image: none; + box-shadow: none; } + GtkSwitch.trough:backdrop:active:insensitive { + background-color: rgba(205, 205, 205, 0.3); } + GtkSwitch.trough:backdrop:insensitive { + color: transparent; + border-color: rgba(0, 0, 0, 0.1); + background-image: none; + background-color: transparent; + box-shadow: none; } + GtkSwitch.slider { + padding: 3px; + transition: all 0.4s ease-out; } + GtkSwitch.slider, GtkSwitch.slider:hover, GtkSwitch.slider:active, GtkSwitch.slider:insensitive, GtkSwitch.slider:backdrop, GtkSwitch.slider:backdrop:insensitive { + background-color: white; + background-image: none; + background-clip: border-box; + border-radius: 4px; + border: 1px solid transparent; + box-shadow: 0 1px 1px #bbbbbb; } + GtkSwitch.slider:active { + box-shadow: 0 1px 1px #0b6418; } + GtkSwitch.slider:insensitive { + background-color: transparent; + border: 1px solid rgba(0, 0, 0, 0.1); + box-shadow: none; } + GtkSwitch.slider:backdrop { + transition: all 200ms ease-out; + background-color: #edeef0; } + GtkSwitch.slider:backdrop:active { + border-color: transparent; } + GtkSwitch.slider:backdrop:insensitive { + background-color: transparent; + transition: all 200ms ease-out; } + .list-row:selected GtkSwitch { + box-shadow: none; + border-color: #66220a; } + .list-row:selected GtkSwitch:backdrop { + border-color: #66220a; } + .list-row:selected GtkSwitch.slider:dir(rtl) { + border-left-color: #c2c8ce; } + .list-row:selected GtkSwitch.slider:dir(ltr) { + border-right-color: #c2c8ce; } + .list-row:selected GtkSwitch.slider, .list-row:selected GtkSwitch.slider:active { + border-color: #66220a; } + +/************************* + * Check and Radio items * + *************************/ +.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked.png"), url("assets/checkbox-unchecked@2.png")); + icon-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); } + .check.button.flat { + icon-shadow: none; } + +.view.check:selected, +.list-row:selected .check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked.png"), url("assets/checkbox-unchecked@2.png")); } + +.check:hover { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-hover.png"), url("assets/checkbox-unchecked-hover@2.png")); + icon-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); } + .check:hover.button.flat { + icon-shadow: none; } + +.view.check:hover:selected, +.list-row:selected .check:hover { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-hover.png"), url("assets/checkbox-unchecked-hover@2.png")); } + +.check:active { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-active.png"), url("assets/checkbox-unchecked-active@2.png")); + icon-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); } + .check:active.button.flat { + icon-shadow: none; } + +.view.check:active:selected, +.list-row:selected .check:active { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-active.png"), url("assets/checkbox-unchecked-active@2.png")); } + +.check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive.png"), url("assets/checkbox-unchecked-insensitive@2.png")); + icon-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); } + .check:insensitive.button.flat { + icon-shadow: none; } + +.view.check:insensitive:selected, +.list-row:selected .check:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive.png"), url("assets/checkbox-unchecked-insensitive@2.png")); } + +.check:backdrop { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-backdrop.png"), url("assets/checkbox-unchecked-backdrop@2.png")); + icon-shadow: none; } + .check:backdrop.button.flat { + icon-shadow: none; } + +.view.check:backdrop:selected, +.list-row:selected .check:backdrop { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-backdrop.png"), url("assets/checkbox-unchecked-backdrop@2.png")); } + +.check:backdrop:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-backdrop-insensitive.png"), url("assets/checkbox-unchecked-backdrop-insensitive@2.png")); + icon-shadow: none; } + .check:backdrop:insensitive.button.flat { + icon-shadow: none; } + +.view.check:backdrop:insensitive:selected, +.list-row:selected .check:backdrop:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-backdrop-insensitive.png"), url("assets/checkbox-unchecked-backdrop-insensitive@2.png")); } + +.check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed.png"), url("assets/checkbox-mixed@2.png")); + icon-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); } + .check:inconsistent.button.flat { + icon-shadow: none; } + +.view.check:inconsistent:selected, +.list-row:selected .check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed.png"), url("assets/checkbox-mixed@2.png")); } + +.check:inconsistent:hover { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-hover.png"), url("assets/checkbox-mixed-hover@2.png")); + icon-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); } + .check:inconsistent:hover.button.flat { + icon-shadow: none; } + +.view.check:inconsistent:hover:selected, +.list-row:selected .check:inconsistent:hover { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-hover.png"), url("assets/checkbox-mixed-hover@2.png")); } + +.check:inconsistent:selected { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-active.png"), url("assets/checkbox-mixed-active@2.png")); + icon-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); } + .check:inconsistent:selected.button.flat { + icon-shadow: none; } + +.view.check:inconsistent:selected:selected, +.list-row:selected .check:inconsistent:selected { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-active.png"), url("assets/checkbox-mixed-active@2.png")); } + +.check:inconsistent:backdrop { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-backdrop.png"), url("assets/checkbox-mixed-backdrop@2.png")); + icon-shadow: none; } + .check:inconsistent:backdrop.button.flat { + icon-shadow: none; } + +.view.check:inconsistent:backdrop:selected, +.list-row:selected .check:inconsistent:backdrop { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-backdrop.png"), url("assets/checkbox-mixed-backdrop@2.png")); } + +.check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive.png"), url("assets/checkbox-mixed-insensitive@2.png")); + icon-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); } + .check:inconsistent:insensitive.button.flat { + icon-shadow: none; } + +.view.check:inconsistent:insensitive:selected, +.list-row:selected .check:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive.png"), url("assets/checkbox-mixed-insensitive@2.png")); } + +.check:inconsistent:insensitive:backdrop { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-backdrop-insensitive.png"), url("assets/checkbox-mixed-backdrop-insensitive@2.png")); + icon-shadow: none; } + .check:inconsistent:insensitive:backdrop.button.flat { + icon-shadow: none; } + +.view.check:inconsistent:insensitive:backdrop:selected, +.list-row:selected .check:inconsistent:insensitive:backdrop { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-backdrop-insensitive.png"), url("assets/checkbox-mixed-backdrop-insensitive@2.png")); } + +.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked.png"), url("assets/checkbox-checked@2.png")); + icon-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); } + .check:checked.button.flat { + icon-shadow: none; } + +.view.check:checked:selected, +.list-row:selected .check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked.png"), url("assets/checkbox-checked@2.png")); } + +.check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive.png"), url("assets/checkbox-checked-insensitive@2.png")); + icon-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); } + .check:checked:insensitive.button.flat { + icon-shadow: none; } + +.view.check:checked:insensitive:selected, +.list-row:selected .check:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive.png"), url("assets/checkbox-checked-insensitive@2.png")); } + +.check:checked:hover { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-hover.png"), url("assets/checkbox-checked-hover@2.png")); + icon-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); } + .check:checked:hover.button.flat { + icon-shadow: none; } + +.view.check:checked:hover:selected, +.list-row:selected .check:checked:hover { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-hover.png"), url("assets/checkbox-checked-hover@2.png")); } + +.check:checked:active { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-active.png"), url("assets/checkbox-checked-active@2.png")); + icon-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); } + .check:checked:active.button.flat { + icon-shadow: none; } + +.view.check:checked:active:selected, +.list-row:selected .check:checked:active { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-active.png"), url("assets/checkbox-checked-active@2.png")); } + +.check:backdrop:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-backdrop.png"), url("assets/checkbox-checked-backdrop@2.png")); + icon-shadow: none; } + .check:backdrop:checked.button.flat { + icon-shadow: none; } + +.view.check:backdrop:checked:selected, +.list-row:selected .check:backdrop:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-backdrop.png"), url("assets/checkbox-checked-backdrop@2.png")); } + +.check:backdrop:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-backdrop-insensitive.png"), url("assets/checkbox-checked-backdrop-insensitive@2.png")); + icon-shadow: none; } + .check:backdrop:checked:insensitive.button.flat { + icon-shadow: none; } + +.view.check:backdrop:checked:insensitive:selected, +.list-row:selected .check:backdrop:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-backdrop-insensitive.png"), url("assets/checkbox-checked-backdrop-insensitive@2.png")); } + +.menu .menuitem.check { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked.png"), url("assets/checkbox-unchecked@2.png")); + color: #878787; + icon-shadow: none; } + .menu .menuitem.check:active, .menu .menuitem.check:checked { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked.png"), url("assets/checkbox-checked@2.png")); } + .menu .menuitem.check:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed.png"), url("assets/checkbox-mixed@2.png")); } + .menu .menuitem.check:hover { + color: #FFFFFF; } + .menu .menuitem.check:insensitive { + color: #c7c8c9; } + +.radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked.png"), url("assets/radio-unchecked@2.png")); + icon-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); } + .radio.button.flat { + icon-shadow: none; } + +.view.radio:selected, +.list-row:selected .radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked.png"), url("assets/radio-unchecked@2.png")); } + +.radio:hover { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-hover.png"), url("assets/radio-unchecked-hover@2.png")); + icon-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); } + .radio:hover.button.flat { + icon-shadow: none; } + +.view.radio:hover:selected, +.list-row:selected .radio:hover { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-hover.png"), url("assets/radio-unchecked-hover@2.png")); } + +.radio:active { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-active.png"), url("assets/radio-unchecked-active@2.png")); + icon-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); } + .radio:active.button.flat { + icon-shadow: none; } + +.view.radio:active:selected, +.list-row:selected .radio:active { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-active.png"), url("assets/radio-unchecked-active@2.png")); } + +.radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive.png"), url("assets/radio-unchecked-insensitive@2.png")); + icon-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); } + .radio:insensitive.button.flat { + icon-shadow: none; } + +.view.radio:insensitive:selected, +.list-row:selected .radio:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive.png"), url("assets/radio-unchecked-insensitive@2.png")); } + +.radio:backdrop { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-backdrop.png"), url("assets/radio-unchecked-backdrop@2.png")); + icon-shadow: none; } + .radio:backdrop.button.flat { + icon-shadow: none; } + +.view.radio:backdrop:selected, +.list-row:selected .radio:backdrop { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-backdrop.png"), url("assets/radio-unchecked-backdrop@2.png")); } + +.radio:backdrop:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-backdrop-insensitive.png"), url("assets/radio-unchecked-backdrop-insensitive@2.png")); + icon-shadow: none; } + .radio:backdrop:insensitive.button.flat { + icon-shadow: none; } + +.view.radio:backdrop:insensitive:selected, +.list-row:selected .radio:backdrop:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-backdrop-insensitive.png"), url("assets/radio-unchecked-backdrop-insensitive@2.png")); } + +.radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed.png"), url("assets/radio-mixed@2.png")); + icon-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); } + .radio:inconsistent.button.flat { + icon-shadow: none; } + +.view.radio:inconsistent:selected, +.list-row:selected .radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed.png"), url("assets/radio-mixed@2.png")); } + +.radio:inconsistent:hover { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-hover.png"), url("assets/radio-mixed-hover@2.png")); + icon-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); } + .radio:inconsistent:hover.button.flat { + icon-shadow: none; } + +.view.radio:inconsistent:hover:selected, +.list-row:selected .radio:inconsistent:hover { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-hover.png"), url("assets/radio-mixed-hover@2.png")); } + +.radio:inconsistent:selected { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-active.png"), url("assets/radio-mixed-active@2.png")); + icon-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); } + .radio:inconsistent:selected.button.flat { + icon-shadow: none; } + +.view.radio:inconsistent:selected:selected, +.list-row:selected .radio:inconsistent:selected { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-active.png"), url("assets/radio-mixed-active@2.png")); } + +.radio:inconsistent:backdrop { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-backdrop.png"), url("assets/radio-mixed-backdrop@2.png")); + icon-shadow: none; } + .radio:inconsistent:backdrop.button.flat { + icon-shadow: none; } + +.view.radio:inconsistent:backdrop:selected, +.list-row:selected .radio:inconsistent:backdrop { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-backdrop.png"), url("assets/radio-mixed-backdrop@2.png")); } + +.radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive.png"), url("assets/radio-mixed-insensitive@2.png")); + icon-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); } + .radio:inconsistent:insensitive.button.flat { + icon-shadow: none; } + +.view.radio:inconsistent:insensitive:selected, +.list-row:selected .radio:inconsistent:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive.png"), url("assets/radio-mixed-insensitive@2.png")); } + +.radio:inconsistent:insensitive:backdrop { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-backdrop-insensitive.png"), url("assets/radio-mixed-backdrop-insensitive@2.png")); + icon-shadow: none; } + .radio:inconsistent:insensitive:backdrop.button.flat { + icon-shadow: none; } + +.view.radio:inconsistent:insensitive:backdrop:selected, +.list-row:selected .radio:inconsistent:insensitive:backdrop { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-backdrop-insensitive.png"), url("assets/radio-mixed-backdrop-insensitive@2.png")); } + +.radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked.png"), url("assets/radio-checked@2.png")); + icon-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); } + .radio:checked.button.flat { + icon-shadow: none; } + +.view.radio:checked:selected, +.list-row:selected .radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked.png"), url("assets/radio-checked@2.png")); } + +.radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive.png"), url("assets/radio-checked-insensitive@2.png")); + icon-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); } + .radio:checked:insensitive.button.flat { + icon-shadow: none; } + +.view.radio:checked:insensitive:selected, +.list-row:selected .radio:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive.png"), url("assets/radio-checked-insensitive@2.png")); } + +.radio:checked:hover { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-hover.png"), url("assets/radio-checked-hover@2.png")); + icon-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); } + .radio:checked:hover.button.flat { + icon-shadow: none; } + +.view.radio:checked:hover:selected, +.list-row:selected .radio:checked:hover { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-hover.png"), url("assets/radio-checked-hover@2.png")); } + +.radio:checked:active { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-active.png"), url("assets/radio-checked-active@2.png")); + icon-shadow: 0 1px 0 rgba(0, 0, 0, 0.1); } + .radio:checked:active.button.flat { + icon-shadow: none; } + +.view.radio:checked:active:selected, +.list-row:selected .radio:checked:active { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-active.png"), url("assets/radio-checked-active@2.png")); } + +.radio:backdrop:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-backdrop.png"), url("assets/radio-checked-backdrop@2.png")); + icon-shadow: none; } + .radio:backdrop:checked.button.flat { + icon-shadow: none; } + +.view.radio:backdrop:checked:selected, +.list-row:selected .radio:backdrop:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-backdrop.png"), url("assets/radio-checked-backdrop@2.png")); } + +.radio:backdrop:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-backdrop-insensitive.png"), url("assets/radio-checked-backdrop-insensitive@2.png")); + icon-shadow: none; } + .radio:backdrop:checked:insensitive.button.flat { + icon-shadow: none; } + +.view.radio:backdrop:checked:insensitive:selected, +.list-row:selected .radio:backdrop:checked:insensitive { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-backdrop-insensitive.png"), url("assets/radio-checked-backdrop-insensitive@2.png")); } + +.menu .menuitem.radio { + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked.png"), url("assets/radio-unchecked@2.png")); + color: #878787; + icon-shadow: none; } + .menu .menuitem.radio:active, .menu .menuitem.radio:checked { + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked.png"), url("assets/radio-checked@2.png")); } + .menu .menuitem.radio:inconsistent { + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed.png"), url("assets/radio-mixed@2.png")); } + .menu .menuitem.radio:hover { + color: #FFFFFF; } + .menu .menuitem.radio:insensitive { + color: #c7c8c9; } + +.view.check, .view.radio, +.list-row .check, list-row .radio { + icon-shadow: none; } + .view.check:selected, .view.check:hover, .view.radio:selected, .view.radio:hover, + .list-row .check:selected, + .list-row .check:hover, list-row .radio:selected, list-row .radio:hover { + icon-shadow: none; } + +.view.content-view.check:not(.list) { + icon-shadow: none; + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode.png"), url("assets/checkbox-selectionmode@2.png")); + background-color: transparent; } + +.view.content-view.check:hover:not(.list) { + icon-shadow: none; + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-hover-selectionmode.png"), url("assets/checkbox-hover-selectionmode@2.png")); + background-color: transparent; } + +.view.content-view.check:active:not(.list) { + icon-shadow: none; + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-active-selectionmode.png"), url("assets/checkbox-active-selectionmode@2.png")); + background-color: transparent; } + +.view.content-view.check:backdrop:not(.list) { + icon-shadow: none; + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-backdrop-selectionmode.png"), url("assets/checkbox-backdrop-selectionmode@2.png")); + background-color: transparent; } + +.view.content-view.check:checked:not(.list) { + icon-shadow: none; + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode.png"), url("assets/checkbox-checked-selectionmode@2.png")); + background-color: transparent; } + +.view.content-view.check:checked:hover:not(.list) { + icon-shadow: none; + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-hover-selectionmode.png"), url("assets/checkbox-checked-hover-selectionmode@2.png")); + background-color: transparent; } + +.view.content-view.check:checked:active:not(.list) { + icon-shadow: none; + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-active-selectionmode.png"), url("assets/checkbox-checked-active-selectionmode@2.png")); + background-color: transparent; } + +.view.content-view.check:backdrop:checked:not(.list) { + icon-shadow: none; + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-backdrop-selectionmode.png"), url("assets/checkbox-checked-backdrop-selectionmode@2.png")); + background-color: transparent; } + +GtkCheckButton.text-button, GtkRadioButton.text-button { + padding: 1px 2px 4px; + outline-offset: 0; } + GtkCheckButton.text-button:insensitive, GtkCheckButton.text-button:insensitive:active, GtkCheckButton.text-button:insensitive:inconsistent, GtkRadioButton.text-button:insensitive, GtkRadioButton.text-button:insensitive:active, GtkRadioButton.text-button:insensitive:inconsistent { + color: #999a9a; } + GtkCheckButton.text-button:insensitive:backdrop, GtkCheckButton.text-button:insensitive:active:backdrop, GtkCheckButton.text-button:insensitive:inconsistent:backdrop, GtkRadioButton.text-button:insensitive:backdrop, GtkRadioButton.text-button:insensitive:active:backdrop, GtkRadioButton.text-button:insensitive:inconsistent:backdrop { + color: #c2c8ce; } + +/************ + * GtkScale * + ************/ +GtkProgressBar.trough, .scale.trough, +.scale.scale-has-marks-above.scale-has-marks-below.trough, +.scale.vertical.scale-has-marks-above.scale-has-marks-below.trough { + border: none; + border-radius: 3px; + background-color: #CDCDCD; + box-shadow: none; + background-image: none; } + GtkProgressBar.trough:insensitive, .scale.trough:insensitive, + .scale.scale-has-marks-above.scale-has-marks-below.trough:insensitive { + background-color: #e1e2e2; } + GtkProgressBar.trough:backdrop, .scale.trough:backdrop, + .scale.scale-has-marks-above.scale-has-marks-below.trough:backdrop { + background-color: #dadada; + transition: all 200ms ease-out; } + GtkProgressBar.trough:backdrop:insensitive, .scale.trough:backdrop:insensitive { + background-color: #e1e2e2; } + row:selected GtkProgressBar.trough, row:selected .scale.trough, + row:selected .scale.scale-has-marks-above.scale-has-marks-below.trough { + border-color: #19B6EE; } + +.scale.trough.highlight, +.scale.scale-has-marks-above.scale-has-marks-below.trough.highlight { + border: none; + border-radius: 3px; + background-color: #19B6EE; + background-image: none; } + .scale.trough.highlight:insensitive { + background-color: #e1e2e2; } + .scale.trough.highlight:backdrop { + background-color: #31bef0; } + .scale.trough.highlight:backdrop:insensitive { + background-color: #e1e2e2; } + +.scale, +.scale.scale-has-marks-above.scale-has-marks-below, +.scale.vertical.scale-has-marks-above.scale-has-marks-below { + -GtkScale-slider-length: 20; + -GtkRange-slider-width: 20; + -GtkRange-trough-border: 2; + outline-offset: -9px; + outline-radius: 4px; } + .scale.fine-tune, + .scale.scale-has-marks-above.scale-has-marks-below.fine-tune, + .scale.vertical.scale-has-marks-above.scale-has-marks-below.fine-tune { + outline-offset: -7px; + outline-radius: 6px; } + .scale.fine-tune.trough, + .scale.scale-has-marks-above.scale-has-marks-below.fine-tune.trough, + .scale.vertical.scale-has-marks-above.scale-has-marks-below.fine-tune.trough { + margin: 8px; + border-radius: 4px; } + .scale.slider, + .scale.scale-has-marks-above.scale-has-marks-below.slider, + .scale.vertical.scale-has-marks-above.scale-has-marks-below.slider { + background-color: white; + background-image: none; + color: #3D3D3D; + border-color: #e6e6e6; + box-shadow: 0 1px rgba(0, 0, 0, 0.1); + text-shadow: none; + icon-shadow: none; + border: 1px solid; + border-radius: 50%; + border-color: #acacac; + box-shadow: none; } + .scale.slider:hover, + .scale.scale-has-marks-above.scale-has-marks-below.slider:hover, + .scale.vertical.scale-has-marks-above.scale-has-marks-below.slider:hover { + -gtk-image-effect: highlight; + background-color: white; + background-image: none; + color: #3D3D3D; + border-color: #c2c8ce; + border-bottom-color: #98a2ac; + box-shadow: 0 1px rgba(0, 0, 0, 0.15); + text-shadow: none; + icon-shadow: none; + background-color: #f2f2f2; + border-color: #acacac; + border-radius: 50%; + box-shadow: none; } + .scale.slider:insensitive, + .scale.scale-has-marks-above.scale-has-marks-below.slider:insensitive, + .scale.vertical.scale-has-marks-above.scale-has-marks-below.slider:insensitive { + background-color: rgba(255, 255, 255, 0.9); + background-image: none; + border-color: white; + box-shadow: 0 1px transparent; + border-color: #c5c5c5; + border-style: solid; + border-radius: 50%; + background-image: none; + box-shadow: none; } + .scale.slider:insensitive .label, .scale.slider:insensitive, + .scale.scale-has-marks-above.scale-has-marks-below.slider:insensitive .label, + .scale.scale-has-marks-above.scale-has-marks-below.slider:insensitive, + .scale.vertical.scale-has-marks-above.scale-has-marks-below.slider:insensitive .label, + .scale.vertical.scale-has-marks-above.scale-has-marks-below.slider:insensitive { + color: #999a9a; } + .scale.slider:backdrop, + .scale.scale-has-marks-above.scale-has-marks-below.slider:backdrop, + .scale.vertical.scale-has-marks-above.scale-has-marks-below.slider:backdrop { + border-style: solid; + border-radius: 50%; + border-color: #b1b9c1; + background-image: none; + background-color: #f9fafb; + box-shadow: none; } + .scale.slider:backdrop:insensitive, + .scale.scale-has-marks-above.scale-has-marks-below.slider:backdrop:insensitive, + .scale.vertical.scale-has-marks-above.scale-has-marks-below.slider:backdrop:insensitive { + background-color: #edeef0; + background-image: none; + border-color: rgba(186, 192, 199, 0.7); + box-shadow: none; + background-color: #edeff0; + border-color: #c2c8ce; } + .scale.slider:backdrop:insensitive .label, .scale.slider:backdrop:insensitive, + .scale.scale-has-marks-above.scale-has-marks-below.slider:backdrop:insensitive .label, + .scale.scale-has-marks-above.scale-has-marks-below.slider:backdrop:insensitive, + .scale.vertical.scale-has-marks-above.scale-has-marks-below.slider:backdrop:insensitive .label, + .scale.vertical.scale-has-marks-above.scale-has-marks-below.slider:backdrop:insensitive { + color: rgba(45, 45, 45, 0.5); } + .scale.slider:active, + .scale.scale-has-marks-above.scale-has-marks-below.slider:active, + .scale.vertical.scale-has-marks-above.scale-has-marks-below.slider:active { + border: 1px solid #0e8bb7; } + .osd .scale.slider, .osd .scale.scale-has-marks-above.scale-has-marks-below.slider, .osd .scale.vertical.scale-has-marks-above.scale-has-marks-below.slider { + color: #F7F7F7; + border-color: black; + background-color: #181818; + background-image: none; + background-clip: padding-box; + box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.05); + background-color: #181818; } + .osd .scale.slider:hover, .osd .scale.scale-has-marks-above.scale-has-marks-below.slider:hover, .osd .scale.vertical.scale-has-marks-above.scale-has-marks-below.slider:hover { + color: white; + border-color: #101010; + background-color: #373737; + background-image: none; + background-clip: padding-box; + box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.05); } + .osd .scale.slider:active, .osd .scale.scale-has-marks-above.scale-has-marks-below.slider:active, .osd .scale.vertical.scale-has-marks-above.scale-has-marks-below.slider:active { + color: white; + border-color: black; + background-color: #181818; + background-image: none; + background-clip: padding-box; + box-shadow: inset 0 2px 3px -1px rgba(0, 0, 0, 0.2); } + .osd .scale.slider:backdrop, .osd .scale.scale-has-marks-above.scale-has-marks-below.slider:backdrop, .osd .scale.vertical.scale-has-marks-above.scale-has-marks-below.slider:backdrop { + color: #F7F7F7; + border-color: rgba(0, 0, 0, 0.7); + background-color: rgba(24, 24, 24, 0.7); + background-image: none; + background-clip: padding-box; + box-shadow: none; } + .scale.trough, + .scale.scale-has-marks-above.scale-has-marks-below.trough, + .scale.vertical.scale-has-marks-above.scale-has-marks-below.trough { + margin: 10px; + outline-offset: 3px; + outline-radius: 5px; } + .osd .scale.trough, .osd .scale.scale-has-marks-above.scale-has-marks-below.trough, .osd .scale.vertical.scale-has-marks-above.scale-has-marks-below.trough { + border-color: #3e3e3e; + box-shadow: none; + margin: 9px; + background-color: rgba(62, 62, 62, 0.8); + outline-color: rgba(247, 247, 247, 0.2); + outline-offset: -8px; } + .osd .scale.trough.fine-tune, .osd .scale.scale-has-marks-above.scale-has-marks-below.trough.fine-tune, .osd .scale.vertical.scale-has-marks-above.scale-has-marks-below.trough.fine-tune { + margin: 7px; } + .osd .scale.trough.highlight, .osd .scale.scale-has-marks-above.scale-has-marks-below.trough.highlight, .osd .scale.vertical.scale-has-marks-above.scale-has-marks-below.trough.highlight { + background-image: none; + background-color: #19B6EE; } + .osd .scale.trough:insensitive, .osd .scale.trough:backdrop:insensitive, .osd .scale.scale-has-marks-above.scale-has-marks-below.trough:insensitive, .osd .scale.scale-has-marks-above.scale-has-marks-below.trough:backdrop:insensitive, .osd .scale.vertical.scale-has-marks-above.scale-has-marks-below.trough:insensitive, .osd .scale.vertical.scale-has-marks-above.scale-has-marks-below.trough:backdrop:insensitive { + border-color: transparent; + background-color: transparent; } + .osd .scale.trough:backdrop, .osd .scale.scale-has-marks-above.scale-has-marks-below.trough:backdrop, .osd .scale.vertical.scale-has-marks-above.scale-has-marks-below.trough:backdrop { + border-color: #3e3e3e; + background-image: none; } + .list-row:selected .scale, .list-row:selected .scale.scale-has-marks-above.scale-has-marks-below, .list-row:selected .scale.vertical.scale-has-marks-above.scale-has-marks-below { + border-color: #66220a; } + .list-row:selected .scale.trough, .list-row:selected .scale.scale-has-marks-above.scale-has-marks-below.trough, .list-row:selected .scale.vertical.scale-has-marks-above.scale-has-marks-below.trough { + box-shadow: inset 1px 1px rgba(0, 0, 0, 0.1); } + .list-row:selected .scale.trough:backdrop, .list-row:selected .scale.scale-has-marks-above.scale-has-marks-below.trough:backdrop, .list-row:selected .scale.vertical.scale-has-marks-above.scale-has-marks-below.trough:backdrop { + box-shadow: none; } + .list-row:selected .scale.trough.highlight:backdrop, .list-row:selected .scale.scale-has-marks-above.scale-has-marks-below.trough.highlight:backdrop, .list-row:selected .scale.vertical.scale-has-marks-above.scale-has-marks-below.trough.highlight:backdrop { + border-color: #66220a; } + .list-row:selected .scale:insensitive, .list-row:selected .scale.trough.highlight:insensitive, .list-row:selected .scale.scale-has-marks-above.scale-has-marks-below:insensitive, .list-row:selected .scale.scale-has-marks-above.scale-has-marks-below.trough.highlight:insensitive, .list-row:selected .scale.vertical.scale-has-marks-above.scale-has-marks-below:insensitive, .list-row:selected .scale.vertical.scale-has-marks-above.scale-has-marks-below.trough.highlight:insensitive { + border-color: #e95420; + box-shadow: none; + background-color: #f4aa90; + background-image: none; } + .list-row:selected .scale:insensitive:backdrop, .list-row:selected .scale.trough.highlight:insensitive:backdrop, .list-row:selected .scale.scale-has-marks-above.scale-has-marks-below:insensitive:backdrop, .list-row:selected .scale.scale-has-marks-above.scale-has-marks-below.trough.highlight:insensitive:backdrop, .list-row:selected .scale.vertical.scale-has-marks-above.scale-has-marks-below:insensitive:backdrop, .list-row:selected .scale.vertical.scale-has-marks-above.scale-has-marks-below.trough.highlight:insensitive:backdrop { + background-color: #eea389; } + +.scale.scale-has-marks-below { + -GtkScale-slider-length: 15; + -GtkRange-slider-width: 24; + -GtkRange-trough-border: 2; + color: alpha(currentColor,0.5); } + .scale.scale-has-marks-below.slider { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-horz-scale-has-marks-below.png"), url("assets/slider-horz-scale-has-marks-below@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; } + .scale.scale-has-marks-below.slider:hover { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-horz-scale-has-marks-below-hover.png"), url("assets/slider-horz-scale-has-marks-below-hover@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; } + .scale.scale-has-marks-below.slider:active { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-horz-scale-has-marks-below-active.png"), url("assets/slider-horz-scale-has-marks-below-active@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; } + .scale.scale-has-marks-below.slider:insensitive { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-horz-scale-has-marks-below-insensitive.png"), url("assets/slider-horz-scale-has-marks-below-insensitive@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; } + .scale.scale-has-marks-below.slider:backdrop { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-horz-scale-has-marks-below-backdrop.png"), url("assets/slider-horz-scale-has-marks-below-backdrop@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; } + .scale.scale-has-marks-below.slider:backdrop:insensitive { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-horz-scale-has-marks-below-backdrop-insensitive.png"), url("assets/slider-horz-scale-has-marks-below-backdrop-insensitive@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; } + +.scale.scale-has-marks-above { + -GtkScale-slider-length: 15; + -GtkRange-slider-width: 24; + -GtkRange-trough-border: 2; + color: alpha(currentColor,0.5); } + .scale.scale-has-marks-above.slider { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-horz-scale-has-marks-above.png"), url("assets/slider-horz-scale-has-marks-above@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; } + .scale.scale-has-marks-above.slider:hover { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-horz-scale-has-marks-above-hover.png"), url("assets/slider-horz-scale-has-marks-above-hover@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; } + .scale.scale-has-marks-above.slider:active { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-horz-scale-has-marks-above-active.png"), url("assets/slider-horz-scale-has-marks-above-active@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; } + .scale.scale-has-marks-above.slider:insensitive { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-horz-scale-has-marks-above-insensitive.png"), url("assets/slider-horz-scale-has-marks-above-insensitive@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; } + .scale.scale-has-marks-above.slider:backdrop { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-horz-scale-has-marks-above-backdrop.png"), url("assets/slider-horz-scale-has-marks-above-backdrop@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; } + .scale.scale-has-marks-above.slider:backdrop:insensitive { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-horz-scale-has-marks-above-backdrop-insensitive.png"), url("assets/slider-horz-scale-has-marks-above-backdrop-insensitive@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; } + +.scale.vertical.scale-has-marks-below { + -GtkScale-slider-length: 15; + -GtkRange-slider-width: 24; + -GtkRange-trough-border: 2; + color: alpha(currentColor,0.5); } + .scale.vertical.scale-has-marks-below.slider { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-vert-scale-has-marks-below.png"), url("assets/slider-vert-scale-has-marks-below@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; } + .scale.vertical.scale-has-marks-below.slider:hover { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-vert-scale-has-marks-below-hover.png"), url("assets/slider-vert-scale-has-marks-below-hover@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; } + .scale.vertical.scale-has-marks-below.slider:active { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-vert-scale-has-marks-below-active.png"), url("assets/slider-vert-scale-has-marks-below-active@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; } + .scale.vertical.scale-has-marks-below.slider:insensitive { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-vert-scale-has-marks-below-insensitive.png"), url("assets/slider-vert-scale-has-marks-below-insensitive@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; } + .scale.vertical.scale-has-marks-below.slider:backdrop { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-vert-scale-has-marks-below-backdrop.png"), url("assets/slider-vert-scale-has-marks-below-backdrop@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; } + .scale.vertical.scale-has-marks-below.slider:backdrop:insensitive { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-vert-scale-has-marks-below-backdrop-insensitive.png"), url("assets/slider-vert-scale-has-marks-below-backdrop-insensitive@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; } + +.scale.vertical.scale-has-marks-above { + -GtkScale-slider-length: 15; + -GtkRange-slider-width: 24; + -GtkRange-trough-border: 2; + color: alpha(currentColor,0.5); } + .scale.vertical.scale-has-marks-above.slider { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-vert-scale-has-marks-above.png"), url("assets/slider-vert-scale-has-marks-above@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; } + .scale.vertical.scale-has-marks-above.slider:hover { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-vert-scale-has-marks-above-hover.png"), url("assets/slider-vert-scale-has-marks-above-hover@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; } + .scale.vertical.scale-has-marks-above.slider:active { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-vert-scale-has-marks-above-active.png"), url("assets/slider-vert-scale-has-marks-above-active@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; } + .scale.vertical.scale-has-marks-above.slider:insensitive { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-vert-scale-has-marks-above-insensitive.png"), url("assets/slider-vert-scale-has-marks-above-insensitive@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; } + .scale.vertical.scale-has-marks-above.slider:backdrop { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-vert-scale-has-marks-above-backdrop.png"), url("assets/slider-vert-scale-has-marks-above-backdrop@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; } + .scale.vertical.scale-has-marks-above.slider:backdrop:insensitive { + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-vert-scale-has-marks-above-backdrop-insensitive.png"), url("assets/slider-vert-scale-has-marks-above-backdrop-insensitive@2.png")); + background-repeat: no-repeat; + background-position: center; + box-shadow: none; } + +.scale.scale-has-marks-above .trough { + margin: 14px 10px 10px; } + +.fine-tune.scale.scale-has-marks-above .trough { + margin: 12px 8px 8px; } + +.scale.scale-has-marks-below .trough { + margin: 10px 10px 14px; } + +.fine-tune.scale.scale-has-marks-below .trough { + margin: 8px 8px 12px; } + +.scale.vertical.scale-has-marks-above .trough { + margin: 10px 10px 10px 14px; } + +.fine-tune.scale.vertical.scale-has-marks-above .trough { + margin: 8px 8px 8px 12px; } + +.scale.vertical.scale-has-marks-below .trough { + margin: 10px 14px 10px 10px; } + +.fine-tune.scale.vertical.scale-has-marks-below .trough { + margin: 8px 12px 8px 8px; } + +/***************** + * Progress bars * + *****************/ +GtkProgressBar { + -GtkProgressBar-min-horizontal-bar-height: 3; + -GtkProgressBar-min-vertical-bar-width: 3; + padding: 0; + font-size: smaller; + color: rgba(61, 61, 61, 0.4); + box-shadow: inset 1px 1px rgba(0, 0, 0, 0.1), 0 1px rgba(0, 0, 0, 0.1); } + GtkProgressBar:backdrop { + color: #c2c8ce; } + GtkProgressBar.osd { + -GtkProgressBar-xspacing: 0; + -GtkProgressBar-yspacing: 0; + -GtkProgressBar-min-horizontal-bar-height: 3; } + GtkProgressBar.trough.osd { + border-style: none; + background-color: transparent; + box-shadow: none; } + +.progressbar { + border: none; + border-radius: 3px; + background-color: #19B6EE; + background-image: none; } + .progressbar:insensitive { + background-color: #e1e2e2; } + .progressbar:backdrop { + background-color: #31bef0; } + .progressbar:backdrop:insensitive { + background-color: #e1e2e2; } + row:selected .progressbar { + border-color: #19B6EE; } + +.progressbar { + box-shadow: none; } + .progressbar.left { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; } + .progressbar.right { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; } + .progressbar.left.right { + box-shadow: none; } + .progressbar.vertical.bottom { + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + box-shadow: none; } + .progressbar.vertical.top { + border-top-left-radius: 3px; + border-top-right-radius: 3px; } + .progressbar.osd { + background-image: none; + background-color: #e95420; + border-style: none; + border-radius: 0; } + +/************* + * Level Bar * + *************/ +.level-bar { + box-shadow: 0 1px rgba(0, 0, 0, 0.1); + -GtkLevelBar-min-block-width: 34; + -GtkLevelBar-min-block-height: 3; } + .level-bar.vertical { + -GtkLevelBar-min-block-width: 3; + -GtkLevelBar-min-block-height: 34; } + .level-bar.trough { + border: 1px solid; + padding: 2px; + border-radius: 3px; + background-color: transparent; + background-image: linear-gradient(to bottom, #eaecee, #fbfbfc 3px, #FFFFFF 90%); + color: #3D3D3D; + border-color: #c2c8ce; + border-top-color: #cccccc; + box-shadow: inset 0 1px 1px 0px rgba(0, 0, 0, 0.05); + background-color: #FFFFFF; } + .level-bar.trough else { + border-top-color: #cccccc; } + .level-bar.trough:backdrop { + background-color: transparent; + background-image: linear-gradient(to bottom, #eaecee, #fbfbfc 3px, #FFFFFF 90%); + background-color: rgba(255, 255, 255, 0.7); + border-color: #bac0c7; + box-shadow: none; + color: #646464; } + .level-bar.trough:backdrop .label, .level-bar.trough:backdrop { + color: #646464; } + .level-bar.fill-block { + border-radius: 3px; + background-color: #19B6EE; + border: none; + box-shadow: none; } + .level-bar.fill-block:backdrop { + background-color: #31bef0; + border: none; + box-shadow: none; } + .level-bar.fill-block.indicator-discrete.horizontal { + margin: 0 1px; } + .level-bar.fill-block.indicator-discrete.vertical { + margin: 1px 0; } + .level-bar.fill-block.level-high { + background-color: #19B6EE; + border: none; + box-shadow: none; } + .level-bar.fill-block.level-high:backdrop { + background-color: #31bef0; + border: none; + box-shadow: none; } + .level-bar.fill-block.level-low { + background-color: #f99b11; + border: none; + box-shadow: none; } + .level-bar.fill-block.level-low:backdrop { + background-color: #faa52a; + border: none; + box-shadow: none; } + .level-bar.fill-block.empty-fill-block { + background-color: #CDCDCD; + border: none; + box-shadow: none; } + .level-bar.fill-block.empty-fill-block:backdrop { + background-color: #dadada; + border: none; + box-shadow: none; } + +/********** + * Frames * + **********/ +.frame { + border: 1px solid #c2c8ce; + padding: 0; } + .frame.flat { + border-style: none; } + .frame:backdrop { + border-color: #bac0c7; } + .frame.action-bar { + padding: 6px; + border-width: 1px 0 0; } + +GtkScrolledWindow GtkViewport.frame { + border-style: none; } + +.separator { + color: rgba(0, 0, 0, 0.1); } + GtkFileChooserButton .separator.vertical, GtkFontButton .separator.vertical { + -GtkWidget-wide-separators: true; } + +/********* + * Lists * + *********/ +.list { + background-color: #FFFFFF; + border-color: #c2c8ce; } + .list:backdrop { + background-color: #f2f2f2; + border-color: #bac0c7; } + +.list-row, +.grid-child { + padding: 2px; } + +.list-row.activatable:hover { + background-color: rgba(61, 61, 61, 0.05); } + +.list-row.activatable:active { + box-shadow: inset 0 2px 2px -2px rgba(0, 0, 0, 0.2); } + +.list-row.activatable:backdrop:hover { + background-color: transparent; } + +.list-row.activatable:selected:active { + box-shadow: inset 0 2px 3px -1px rgba(0, 0, 0, 0.5); } + +.list-row.activatable:selected:hover { + background-color: #d85223; } + +.list-row.activatable:selected:backdrop { + background-color: #e95420; } + +.list-row:selected .button { + background-color: #fefefe; + background-image: none; + color: #3D3D3D; + border-color: #fefefe; + box-shadow: none; + text-shadow: none; + icon-shadow: none; + border-color: #66220a; } + .list-row:selected .button.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; + text-shadow: none; + icon-shadow: none; + color: #FFFFFF; } + .list-row:selected .button:hover { + -gtk-image-effect: highlight; + background-color: white; + background-image: none; + color: #3D3D3D; + border-color: white; + box-shadow: none; + text-shadow: none; + icon-shadow: none; + border-color: #66220a; } + .list-row:selected .button:active, .list-row:selected .button:checked { + box-shadow: inset 0 1px 1px 0px rgba(0, 0, 0, 0.05); + border-color: #c2c8ce; + border-top-color: #7b8896; + background-color: #eaecee; + background-image: none; + text-shadow: none; + icon-shadow: none; + border-color: #66220a; } + .list-row:selected .button:backdrop, .list-row:selected .button.flat:backdrop { + -gtk-image-effect: dim; + background-color: rgba(254, 254, 254, 0.7); + background-image: none; + border-color: rgba(254, 254, 254, 0.7); + box-shadow: none; + border-color: #66220a; } + .list-row:selected .button:backdrop .label, .list-row:selected .button:backdrop, .list-row:selected .button.flat:backdrop .label, .list-row:selected .button.flat:backdrop { + color: rgba(45, 45, 45, 0.8); } + .list-row:selected .button:backdrop:active, .list-row:selected .button:backdrop:checked, .list-row:selected .button.flat:backdrop:active, .list-row:selected .button.flat:backdrop:checked { + background-color: #dcdfe3; + background-image: none; + border-color: #dcdfe3; + border-top-color: #a6afb8; + box-shadow: none; + border-color: #66220a; } + .list-row:selected .button:backdrop:active .label, .list-row:selected .button:backdrop:active, .list-row:selected .button:backdrop:checked .label, .list-row:selected .button:backdrop:checked, .list-row:selected .button.flat:backdrop:active .label, .list-row:selected .button.flat:backdrop:active, .list-row:selected .button.flat:backdrop:checked .label, .list-row:selected .button.flat:backdrop:checked { + color: #959697; } + .list-row:selected .button:backdrop:insensitive, .list-row:selected .button.flat:backdrop:insensitive { + background-color: #edeef0; + background-image: none; + border-color: #edeef0; + box-shadow: none; + border-color: #66220a; } + .list-row:selected .button:backdrop:insensitive .label, .list-row:selected .button:backdrop:insensitive, .list-row:selected .button.flat:backdrop:insensitive .label, .list-row:selected .button.flat:backdrop:insensitive { + color: rgba(45, 45, 45, 0.5); } + .list-row:selected .button:backdrop:insensitive:active, .list-row:selected .button:backdrop:insensitive:checked, .list-row:selected .button.flat:backdrop:insensitive:active, .list-row:selected .button.flat:backdrop:insensitive:checked { + background-color: #d3d7dc; + background-image: none; + border-color: #d3d7dc; + border-top-color: #98a2ac; + border-color: #66220a; } + .list-row:selected .button:backdrop:insensitive:active .label, .list-row:selected .button:backdrop:insensitive:checked .label, .list-row:selected .button.flat:backdrop:insensitive:active .label, .list-row:selected .button.flat:backdrop:insensitive:checked .label { + color: rgba(45, 45, 45, 0.3); } + .list-row:selected .button.flat:backdrop { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; + text-shadow: none; + icon-shadow: none; + color: #f2f2f2; } + .list-row:selected .button:insensitive { + background-color: #F5F6F7; + background-image: none; + border-color: #F5F6F7; + box-shadow: none; + border-color: #66220a; } + .list-row:selected .button:insensitive .label, .list-row:selected .button:insensitive { + color: #999a9a; } + .list-row:selected .button:insensitive:active, .list-row:selected .button:insensitive:checked { + background-color: #eaeaea; + background-image: none; + border-color: #eaeaea; + box-shadow: none; } + .list-row:selected .button:insensitive:active .label, .list-row:selected .button:insensitive:active, .list-row:selected .button:insensitive:checked .label, .list-row:selected .button:insensitive:checked { + color: #999a9a; } + +.list-row { + transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + .list-row:hover { + transition: none; } + +/********************* + * App Notifications * + *********************/ +.app-notification, +.app-notification.frame { + padding: 10px; + border: none; + border-radius: 0 0 6px 6px; + background-color: rgba(24, 24, 24, 0.7); + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent 2px); + background-clip: padding-box; } + .app-notification:backdrop, + .app-notification.frame:backdrop { + background-image: none; } + .app-notification .button, + .app-notification.frame .button { + color: #F7F7F7; + border-color: black; + background-color: #181818; + background-image: none; + background-clip: padding-box; + box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.05); } + .app-notification .button.flat, + .app-notification.frame .button.flat { + icon-shadow: 0 1px black; + text-shadow: 0 1px black; } + .app-notification .button:hover, + .app-notification.frame .button:hover { + color: white; + border-color: #101010; + background-color: #373737; + background-image: none; + background-clip: padding-box; + box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.05); } + .app-notification .button:active, .app-notification .button:checked, .app-notification .button:backdrop:active, .app-notification .button:backdrop:checked, + .app-notification.frame .button:active, + .app-notification.frame .button:checked, + .app-notification.frame .button:backdrop:active, + .app-notification.frame .button:backdrop:checked { + color: white; + border-color: black; + background-color: #181818; + background-image: none; + background-clip: padding-box; + box-shadow: inset 0 2px 3px -1px rgba(0, 0, 0, 0.2); } + .app-notification .button:insensitive, .app-notification .button:backdrop:insensitive, + .app-notification.frame .button:insensitive, + .app-notification.frame .button:backdrop:insensitive { + color: #888888; + background-color: rgba(46, 46, 46, 0.5); + background-image: none; + border-color: rgba(8, 8, 8, 0.5); + background-clip: padding-box; + box-shadow: none; } + .app-notification .button:backdrop, + .app-notification.frame .button:backdrop { + color: #F7F7F7; + border-color: rgba(0, 0, 0, 0.7); + background-color: rgba(24, 24, 24, 0.7); + background-image: none; + background-clip: padding-box; + box-shadow: none; } + +/************* + * Expanders * + *************/ +.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + .expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + .expander:hover { + color: #8a8a8a; } + .expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +/************ + * Calendar * + ***********/ +GtkCalendar { + color: #2D2D2D; + border: 1px solid #c2c8ce; } + GtkCalendar.header { + border: 1px solid rgba(0, 0, 0, 0.1); + border-radius: 0; } + GtkCalendar.header:backdrop { + border-color: rgba(0, 0, 0, 0.1); } + GtkCalendar.button { + color: rgba(61, 61, 61, 0.45); } + GtkCalendar.button:hover { + color: #3D3D3D; } + GtkCalendar.button:backdrop { + color: rgba(149, 150, 151, 0.45); } + GtkCalendar.button:insensitive { + color: rgba(153, 154, 154, 0.45); } + GtkCalendar:inconsistent, GtkCalendar:inconsistent:backdrop { + color: alpha(currentColor,0.55); } + GtkCalendar.highlight, GtkCalendar.highlight:backdrop { + font-size: smaller; + color: #3D3D3D; } + GtkCalendar:backdrop { + color: rgba(45, 45, 45, 0.8); + border-color: #bac0c7; } + +/*********** + * Dialogs * + ***********/ +.message-dialog .dialog-action-area .button { + padding: 8px; } + +.message-dialog.background { + background-color: #F5F6F7; } + +.message-dialog .titlebar { + border-style: none; + box-shadow: inset 0 1px rgba(0, 0, 0, 0.1); } + +.message-dialog.csd.background { + border-bottom-left-radius: 9px; + border-bottom-right-radius: 9px; } + +.message-dialog.csd .dialog-action-area .button { + padding: 12px; + border-radius: 0; + background-color: #fefefe; + background-image: none; + color: #3D3D3D; + border-color: #fefefe; + box-shadow: none; + text-shadow: none; + icon-shadow: none; } + .message-dialog.csd .dialog-action-area .button:hover { + -gtk-image-effect: highlight; + background-color: white; + background-image: none; + color: #3D3D3D; + border-color: white; + box-shadow: none; + text-shadow: none; + icon-shadow: none; } + .message-dialog.csd .dialog-action-area .button:active { + box-shadow: inset 0 1px 1px 0px rgba(0, 0, 0, 0.05); + border-color: #c2c8ce; + border-top-color: #7b8896; + background-color: #eaecee; + background-image: none; + text-shadow: none; + icon-shadow: none; } + .message-dialog.csd .dialog-action-area .button:insensitive { + background-color: #F5F6F7; + background-image: none; + border-color: #F5F6F7; + box-shadow: none; } + .message-dialog.csd .dialog-action-area .button:insensitive .label, .message-dialog.csd .dialog-action-area .button:insensitive { + color: #999a9a; } + .message-dialog.csd .dialog-action-area .button:backdrop { + -gtk-image-effect: dim; + background-color: rgba(254, 254, 254, 0.7); + background-image: none; + border-color: rgba(254, 254, 254, 0.7); + box-shadow: none; } + .message-dialog.csd .dialog-action-area .button:backdrop .label, .message-dialog.csd .dialog-action-area .button:backdrop { + color: rgba(45, 45, 45, 0.8); } + .message-dialog.csd .dialog-action-area .button:backdrop:insensitive { + background-color: #edeef0; + background-image: none; + border-color: #edeef0; + box-shadow: none; } + .message-dialog.csd .dialog-action-area .button:backdrop:insensitive .label, .message-dialog.csd .dialog-action-area .button:backdrop:insensitive { + color: rgba(45, 45, 45, 0.5); } + .message-dialog.csd .dialog-action-area .button.suggested-action { + background-color: #e95420; + background-image: none; + color: white; + border-color: #e95420; + box-shadow: none; + text-shadow: none; + icon-shadow: none; } + .message-dialog.csd .dialog-action-area .button.suggested-action:hover { + -gtk-image-effect: highlight; + background-image: none; + color: white; + box-shadow: none; + text-shadow: none; + icon-shadow: none; } + .message-dialog.csd .dialog-action-area .button.suggested-action:active { + box-shadow: none; + border-color: #c34113; + background-image: none; + text-shadow: none; + icon-shadow: none; } + .message-dialog.csd .dialog-action-area .button.suggested-action:backdrop { + -gtk-image-effect: dim; + background-color: #eb6637; + background-image: none; + border-color: #eb6637; + box-shadow: none; } + .message-dialog.csd .dialog-action-area .button.suggested-action:backdrop .label, .message-dialog.csd .dialog-action-area .button.suggested-action:backdrop { + color: #f7c2af; } + .message-dialog.csd .dialog-action-area .button.suggested-action:backdrop:insensitive { + background-color: #edeef0; + background-image: none; + border-color: #edeef0; + box-shadow: none; } + .message-dialog.csd .dialog-action-area .button.suggested-action:backdrop:insensitive .label, .message-dialog.csd .dialog-action-area .button.suggested-action:backdrop:insensitive { + color: rgba(45, 45, 45, 0.5); } + .message-dialog.csd .dialog-action-area .button.suggested-action:insensitive { + background-color: #F5F6F7; + background-image: none; + border-color: #F5F6F7; + box-shadow: none; } + .message-dialog.csd .dialog-action-area .button.suggested-action:insensitive .label, .message-dialog.csd .dialog-action-area .button.suggested-action:insensitive { + color: #999a9a; } + .message-dialog.csd .dialog-action-area .button.destructive-action { + background-color: #991121; + background-image: none; + color: white; + border-color: #991121; + box-shadow: none; + text-shadow: none; + icon-shadow: none; } + .message-dialog.csd .dialog-action-area .button.destructive-action:hover { + -gtk-image-effect: highlight; + background-color: #b01326; + background-image: none; + color: white; + border-color: #b01326; + box-shadow: none; + text-shadow: none; + icon-shadow: none; } + .message-dialog.csd .dialog-action-area .button.destructive-action:active { + box-shadow: none; + border-color: #6b0c17; + border-top-color: #6b0c17; + background-color: #6b0c17; + background-image: none; + text-shadow: none; + icon-shadow: none; } + .message-dialog.csd .dialog-action-area .button.destructive-action:backdrop { + -gtk-image-effect: dim; + background-color: #b01326; + background-image: none; + border-color: #b01326; + box-shadow: none; } + .message-dialog.csd .dialog-action-area .button.destructive-action:backdrop .label, .message-dialog.csd .dialog-action-area .button.destructive-action:backdrop { + color: #dfa1a8; } + .message-dialog.csd .dialog-action-area .button.destructive-action:backdrop:insensitive { + background-color: #edeef0; + background-image: none; + border-color: #edeef0; + box-shadow: none; } + .message-dialog.csd .dialog-action-area .button.destructive-action:backdrop:insensitive .label, .message-dialog.csd .dialog-action-area .button.destructive-action:backdrop:insensitive { + color: rgba(45, 45, 45, 0.5); } + .message-dialog.csd .dialog-action-area .button.destructive-action:insensitive { + background-color: #F5F6F7; + background-image: none; + border-color: #F5F6F7; + box-shadow: none; } + .message-dialog.csd .dialog-action-area .button.destructive-action:insensitive .label, .message-dialog.csd .dialog-action-area .button.destructive-action:insensitive { + color: #999a9a; } + +.message-dialog.csd .dialog-action-area .button, .message-dialog.csd .dialog-action-area .button:hover, .message-dialog.csd .dialog-action-area .button:active, .message-dialog.csd .dialog-action-area .button:insensitive, .message-dialog.csd .dialog-action-area .button:backdrop, .message-dialog.csd .dialog-action-area .button:backdrop:insensitive, .message-dialog.csd .dialog-action-area .button.suggested-action, .message-dialog.csd .dialog-action-area .button.suggested-action:hover, .message-dialog.csd .dialog-action-area .button.suggested-action:active, .message-dialog.csd .dialog-action-area .button.suggested-action:backdrop, .message-dialog.csd .dialog-action-area .button.suggested-action:backdrop:insensitive, .message-dialog.csd .dialog-action-area .button.suggested-action:insensitive, .message-dialog.csd .dialog-action-area .button.destructive-action, .message-dialog.csd .dialog-action-area .button.destructive-action:hover, .message-dialog.csd .dialog-action-area .button.destructive-action:active, .message-dialog.csd .dialog-action-area .button.destructive-action:backdrop, .message-dialog.csd .dialog-action-area .button.destructive-action:backdrop:insensitive, .message-dialog.csd .dialog-action-area .button.destructive-action:insensitive { + border-left-style: solid; + border-right-style: none; + border-bottom-style: none; } + +.message-dialog.csd .dialog-action-area .button:last-child { + border-bottom-right-radius: 7px; + outline-bottom-right-radius: 5px; } + +.message-dialog.csd .dialog-action-area .button:first-child { + border-left-style: none; + border-bottom-left-radius: 7px; + outline-bottom-left-radius: 5px; } + +GtkFileChooserDialog .search-bar { + background-color: #FFFFFF; + border-color: #F5F6F7; + box-shadow: none; } + GtkFileChooserDialog .search-bar:backdrop { + background-color: #f2f2f2; + border-color: #edeef0; } + +GtkFileChooserDialog .dialog-action-box { + border-top: 1px solid #c2c8ce; } + GtkFileChooserDialog .dialog-action-box:backdrop { + border-top-color: #bac0c7; } + +/*********** + * Sidebar * + ***********/ +.sidebar { + border: none; + background-color: #fafbfb; } + .sidebar:backdrop { + background-color: #f7f7f7; } + +GtkSidebarRow.list-row { + padding: 0px; } + +GtkSidebarRow .sidebar-revealer { + padding: 4px 14px 4px 12px; } + +GtkSidebarRow .sidebar-icon { + opacity: 0.7; } + GtkSidebarRow .sidebar-icon:dir(ltr) { + padding-right: 8px; } + GtkSidebarRow .sidebar-icon:dir(rtl) { + padding-left: 8px; } + +GtkSidebarRow .sidebar-label:dir(ltr) { + padding-right: 2px; } + +GtkSidebarRow .sidebar-label:dir(rtl) { + padding-left: 2px; } + +GtkPlacesSidebar.sidebar .list-row:selected:active { + box-shadow: none; } + +GtkPlacesSidebar.sidebar .sidebar-placeholder-row { + border: solid 1px #e95420; } + +GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { + color: #e95420; } + +.sidebar-button.button { + border-radius: 100%; + outline-radius: 100%; } + .sidebar-button.button.image-button, GtkScaleButton.button, + GtkVolumeButton.button { + padding: 5px; } + .sidebar-button.button:not(:hover):not(:active) > GtkImage, .sidebar-button.button:backdrop > GtkImage { + opacity: 0.7; } + +.sidebar-item { + padding: 10px 4px; } + .sidebar-item > .label { + padding-left: 6px; + padding-right: 6px; } + .sidebar-item.needs-attention > .label { + background-size: 6px 6px, 0 0; } + +/**************** + * File chooser * + ****************/ +GtkPlacesView .server-list-button > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(0turn); } + +GtkPlacesView .server-list-button:checked > GtkImage { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(-0.5turn); } + +GtkPlacesSidebar.sidebar .has-open-popup .list-row.activatable:hover { + background-color: transparent; } + +/********* + * Paned * + *********/ +GtkPaned { + -GtkPaned-handle-size: 1; + -gtk-icon-source: none; + margin: 0 8px 8px 0; } + GtkPaned:dir(rtl) { + margin-right: 0; + margin-left: 8px; } + GtkPaned .pane-separator { + background-color: #c2c8ce; } + GtkPaned .pane-separator:backdrop { + background-color: #bac0c7; } + +GtkPaned.wide { + -GtkPaned-handle-size: 5; + margin: 0; } + GtkPaned.wide .pane-separator { + background-color: transparent; + border-style: none solid; + border-color: #c2c8ce; + border-width: 1px; } + GtkPaned.wide.vertical .pane-separator { + border-style: solid none; } + GtkPaned.wide .pane-separator:backdrop { + border-color: #bac0c7; } + +/************** + * GtkInfoBar * + **************/ +GtkInfoBar { + border-style: none; } + +/************ + * Tooltips * + ************/ +.tooltip { + color: white; + padding: 4px; + /* not working */ + border-radius: 5px; + box-shadow: none; + text-shadow: 0 1px black; } + .tooltip.background { + background-color: rgba(0, 0, 0, 0.8); + background-clip: padding-box; + border: 1px solid rgba(255, 255, 255, 0.1); } + .tooltip.window-frame.csd { + background-color: transparent; } + +.tooltip * { + padding: 4px; + background-color: transparent; + color: inherit; } + +/***************** + * Color Chooser * + *****************/ +GtkColorSwatch { + box-shadow: inset 0 1px rgba(0, 0, 0, 0.1), 0 1px rgba(0, 0, 0, 0.1); } + :selected GtkColorSwatch { + box-shadow: none; } + :selected GtkColorSwatch.overlay, :selected GtkColorSwatch.overlay:hover { + border-color: #FFFFFF; } + GtkColorSwatch:selected { + box-shadow: inset 0 1px rgba(0, 0, 0, 0.1), 0 1px rgba(0, 0, 0, 0.1); } + GtkColorSwatch:insensitive { + box-shadow: none; + opacity: 0.5; } + GtkColorSwatch.top { + border-top-left-radius: 6px; + border-top-right-radius: 6px; } + GtkColorSwatch.bottom { + border-bottom-left-radius: 6px; + border-bottom-right-radius: 6px; } + GtkColorSwatch.left, GtkColorSwatch:first-child:not(.overlay):not(.top) { + border-top-left-radius: 6px; + border-bottom-left-radius: 6px; } + GtkColorSwatch.right, GtkColorSwatch:last-child:not(.overlay):not(.bottom) { + border-top-right-radius: 6px; + border-bottom-right-radius: 6px; } + GtkColorSwatch:only-child:not(.overlay) { + border-radius: 6px; } + GtkColorSwatch.top > .overlay { + border-top-left-radius: 5px; + border-top-right-radius: 5px; } + GtkColorSwatch.bottom > .overlay { + border-bottom-left-radius: 5px; + border-bottom-right-radius: 5px; } + GtkColorSwatch:first-child:not(.top) > .overlay { + border-top-left-radius: 5px; + border-bottom-left-radius: 5px; } + GtkColorSwatch:last-child:not(.bottom) > .overlay { + border-top-right-radius: 5px; + border-bottom-right-radius: 5px; } + GtkColorSwatch:only-child > .overlay { + border-radius: 5px; } + GtkColorSwatch:hover, GtkColorSwatch:hover:selected { + background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 50%); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), inset 0 -1px rgba(0, 0, 0, 0.1); } + GtkColorSwatch:hover.color-dark, GtkColorSwatch:hover:selected.color-dark { + background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 50%); } + GtkColorSwatch:backdrop, GtkColorSwatch:backdrop:selected GtkColorSwatch.color-dark:backdrop, GtkColorSwatch.color-dark:backdrop:selected { + background-image: none; + box-shadow: none; } + GtkColorEditor GtkColorSwatch { + border-radius: 3px; } + GtkColorEditor GtkColorSwatch:hover { + background-image: none; + box-shadow: inset 0 1px rgba(0, 0, 0, 0.1), 0 1px rgba(0, 0, 0, 0.1); } + GtkColorEditor GtkColorSwatch:backdrop { + box-shadow: none; } + GtkColorSwatch.color-dark { + color: white; + outline-color: rgba(255, 255, 255, 0.5); } + GtkColorSwatch.color-dark:backdrop { + color: rgba(255, 255, 255, 0.3); } + GtkColorSwatch.color-light { + color: black; + outline-color: rgba(0, 0, 0, 0.5); } + GtkColorSwatch.color-light:backdrop { + color: rgba(0, 0, 0, 0.3); } + GtkColorSwatch.overlay, GtkColorSwatch.overlay:selected { + border: 1px solid rgba(0, 0, 0, 0.3); } + GtkColorSwatch.overlay:hover, GtkColorSwatch.overlay:selected:hover { + border-color: rgba(0, 0, 0, 0.5); } + GtkColorSwatch#add-color-button { + border-style: solid; + border-width: 1px; + background-color: #fefefe; + background-image: none; + color: #3D3D3D; + border-color: #c2c8ce; + box-shadow: 0 1px rgba(0, 0, 0, 0.1); + text-shadow: none; + icon-shadow: none; } + GtkColorSwatch#add-color-button:hover { + -gtk-image-effect: highlight; + background-color: white; + background-image: none; + color: #3D3D3D; + border-color: #c2c8ce; + border-bottom-color: #98a2ac; + box-shadow: 0 1px rgba(0, 0, 0, 0.15); + text-shadow: none; + icon-shadow: none; } + GtkColorSwatch#add-color-button:backdrop { + -gtk-image-effect: dim; + background-color: rgba(254, 254, 254, 0.7); + background-image: none; + border-color: #bac0c7; + box-shadow: none; } + GtkColorSwatch#add-color-button:backdrop .label, GtkColorSwatch#add-color-button:backdrop { + color: rgba(45, 45, 45, 0.8); } + GtkColorSwatch#add-color-button .overlay { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: none; + text-shadow: none; + icon-shadow: none; } + +/******** + * Misc * + ********/ +.content-view { + background-color: #e1e4e7; } + .content-view:hover { + -gtk-image-effect: highlight; } + .content-view:backdrop { + background-color: #e1e4e7; } + +.osd .scale-popup .button.flat { + padding: 6px; + border-style: none; + border-radius: 5px; } + +.scale-popup .button { + padding: 6px; } + .scale-popup .button:hover { + background-color: rgba(61, 61, 61, 0.1); + border-radius: 5px; } + +/********************** + * Window Decorations * + *********************/ +.window-frame { + border-radius: 7px 7px 0 0; + border-width: 0px; + box-shadow: 0 3px 9px 1px rgba(0, 0, 0, 0.5); + /* this is used for the resize cursor area */ + margin: 10px; } + .window-frame:backdrop { + box-shadow: 0 3px 9px 1px transparent, 0 2px 6px 2px rgba(0, 0, 0, 0.2); + transition: all 200ms ease-out; } + .window-frame.tiled { + border-radius: 0; } + .window-frame.popup { + box-shadow: none; } + .window-frame.ssd { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.23); } + .window-frame.csd.popup { + border-radius: 0; + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.13); } + .window-frame.csd.tooltip { + border-radius: 5px; + box-shadow: none; } + .window-frame.csd.message-dialog { + border-radius: 7px; + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.13); } + .window-frame.solid-csd { + border-radius: 0; + margin: 4px; + background-color: #edeef0; + border: solid 1px #bac0c7; + box-shadow: none; } + +.header-bar .button.titlebutton, +.titlebar .button.titlebutton { + /* + @extend .button; + @extend .button.flat; + @extend .image-button; + @include _button_text_shadow; + &:backdrop { icon-shadow: none; } +*/ + border-radius: 4px; + padding: 5px; } + .header-bar .button.titlebutton:not(.close):not(.appmenu):hover, + .titlebar .button.titlebutton:not(.close):not(.appmenu):hover { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.3571428571, to(#323030), to(transparent)); } + .header-bar .button.titlebutton:not(.close):not(.appmenu):hover:hover, + .titlebar .button.titlebutton:not(.close):not(.appmenu):hover:hover { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.3571428571, to(#736e6e), to(transparent)); } + .header-bar .button.titlebutton:not(.close):not(.appmenu):hover:hover:backdrop, + .titlebar .button.titlebutton:not(.close):not(.appmenu):hover:hover:backdrop { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.3571428571, to(#474444), to(transparent)); } + .header-bar .button.titlebutton:not(.close):not(.appmenu):hover:active, + .titlebar .button.titlebutton:not(.close):not(.appmenu):hover:active { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.3571428571, to(#615d5d), to(transparent)); } + .header-bar .button.titlebutton:not(.close):not(.appmenu):active, + .titlebar .button.titlebutton:not(.close):not(.appmenu):active { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.3571428571, to(#323030), to(transparent)); } + .header-bar .button.titlebutton:not(.close):not(.appmenu):active:hover, + .titlebar .button.titlebutton:not(.close):not(.appmenu):active:hover { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.3571428571, to(#736e6e), to(transparent)); } + .header-bar .button.titlebutton:not(.close):not(.appmenu):active:hover:backdrop, + .titlebar .button.titlebutton:not(.close):not(.appmenu):active:hover:backdrop { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.3571428571, to(#474444), to(transparent)); } + .header-bar .button.titlebutton:not(.close):not(.appmenu):active:active, + .titlebar .button.titlebutton:not(.close):not(.appmenu):active:active { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.3571428571, to(#615d5d), to(transparent)); } + .header-bar .button.titlebutton.close, + .titlebar .button.titlebutton.close { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.3571428571, to(#e95420), to(transparent)); } + .header-bar .button.titlebutton.close:hover, + .titlebar .button.titlebutton.close:hover { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.3571428571, to(#eb6637), to(transparent)); } + .header-bar .button.titlebutton.close:hover:backdrop, + .titlebar .button.titlebutton.close:hover:backdrop { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.3571428571, to(#474444), to(transparent)); } + .header-bar .button.titlebutton.close:active, + .titlebar .button.titlebutton.close:active { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.3571428571, to(#d14515), to(transparent)); } + .header-bar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.close:backdrop { + color: #bcbbbb; } + .header-bar .button.titlebutton.close:hover, + .titlebar .button.titlebutton.close:hover { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.3571428571, to(#e95420), to(transparent)); } + .header-bar .button.titlebutton.close:hover:hover, + .titlebar .button.titlebutton.close:hover:hover { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.3571428571, to(#eb6637), to(transparent)); } + .header-bar .button.titlebutton.close:hover:hover:backdrop, + .titlebar .button.titlebutton.close:hover:hover:backdrop { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.3571428571, to(#474444), to(transparent)); } + .header-bar .button.titlebutton.close:hover:active, + .titlebar .button.titlebutton.close:hover:active { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.3571428571, to(#d14515), to(transparent)); } + .header-bar .button.titlebutton.close:hover:backdrop, + .titlebar .button.titlebutton.close:hover:backdrop { + color: #bcbbbb; } + .header-bar .button.titlebutton.close:active, + .titlebar .button.titlebutton.close:active { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.3571428571, to(#e95420), to(transparent)); } + .header-bar .button.titlebutton.close:active:hover, + .titlebar .button.titlebutton.close:active:hover { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.3571428571, to(#eb6637), to(transparent)); } + .header-bar .button.titlebutton.close:active:hover:backdrop, + .titlebar .button.titlebutton.close:active:hover:backdrop { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.3571428571, to(#474444), to(transparent)); } + .header-bar .button.titlebutton.close:active:active, + .titlebar .button.titlebutton.close:active:active { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.3571428571, to(#d14515), to(transparent)); } + .header-bar .button.titlebutton.close:active:backdrop, + .titlebar .button.titlebutton.close:active:backdrop { + color: #bcbbbb; } + .header-bar .button.titlebutton.close:backdrop, + .titlebar .button.titlebutton.close:backdrop { + background-image: none; } + +.header-bar.selection-mode .button.titlebutton, +.titlebar.selection-mode .button.titlebutton { + text-shadow: 0 -1px rgba(0, 0, 0, 0.584314); + icon-shadow: 0 -1px rgba(0, 0, 0, 0.584314); } + .header-bar.selection-mode .button.titlebutton:backdrop, + .titlebar.selection-mode .button.titlebutton:backdrop { + icon-shadow: none; } + +.view:selected, .grid-child:selected, .menuitem.button.flat:selected, .list-row:selected, GtkCalendar:selected, .sidebar:selected { + background-color: #e95420; + color: #FFFFFF; + outline-color: rgba(255, 255, 255, 0.3); } + GtkPlacesSidebar.sidebar .list-row:selected:insensitive .label .view:insensitive:selected, GtkPlacesSidebar.sidebar .list-row:selected:insensitive .label .grid-child:insensitive:selected, GtkPlacesSidebar.sidebar .list-row:selected:insensitive .label .menuitem.button.flat:insensitive:selected, GtkPlacesSidebar.sidebar .list-row:selected:insensitive .label .list-row:insensitive:selected, GtkPlacesSidebar.sidebar .list-row:selected:insensitive .label GtkCalendar:insensitive:selected, GtkPlacesSidebar.sidebar .list-row:selected:insensitive .label .sidebar:insensitive:selected { + color: #f4aa90; } + .view:backdrop:selected, .grid-child:backdrop:selected, .menuitem.button.flat:backdrop:selected, .list-row:backdrop:selected, GtkCalendar:backdrop:selected, .sidebar:backdrop:selected { + color: #f2f2f2; } + GtkPlacesSidebar.sidebar .list-row:selected:backdrop:insensitive .label .view:backdrop:insensitive:selected, GtkPlacesSidebar.sidebar .list-row:selected:backdrop:insensitive .label .grid-child:backdrop:insensitive:selected, GtkPlacesSidebar.sidebar .list-row:selected:backdrop:insensitive .label .menuitem.button.flat:backdrop:insensitive:selected, GtkPlacesSidebar.sidebar .list-row:selected:backdrop:insensitive .label .list-row:backdrop:insensitive:selected, GtkPlacesSidebar.sidebar .list-row:selected:backdrop:insensitive .label GtkCalendar:backdrop:insensitive:selected, GtkPlacesSidebar.sidebar .list-row:selected:backdrop:insensitive .label .sidebar:backdrop:insensitive:selected { + color: #ec835f; } + +.label:selected, .label:selected:focus, .label:selected:hover, .entry:selected, .entry:selected:focus { + background-color: #bfebfa; + color: #2D2D2D; } + .label:insensitive:selected, .entry:insensitive:selected { + color: #768c94; } + .label:backdrop:selected, .entry:backdrop:selected { + background-color: #d7f2fc; + color: rgba(45, 45, 45, 0.8); } + .label:backdrop:insensitive:selected, .entry:backdrop:insensitive:selected { + color: #cfedf8; } + +.monospace { + font: Monospace; } + +/********************** + * Touch Copy & Paste * + *********************/ +.entry.cursor-handle, +.cursor-handle { + background-color: transparent; + background-image: none; + box-shadow: none; + border-style: none; } + .entry.cursor-handle.top:dir(ltr), .entry.cursor-handle.bottom:dir(rtl), + .cursor-handle.top:dir(ltr), + .cursor-handle.bottom:dir(rtl) { + -gtk-icon-source: -gtk-scaled(url("assets/text-select-start.png"), url("assets/text-select-start@2.png")); + padding-left: 10px; } + .entry.cursor-handle.bottom:dir(ltr), .entry.cursor-handle.top:dir(rtl), + .cursor-handle.bottom:dir(ltr), + .cursor-handle.top:dir(rtl) { + -gtk-icon-source: -gtk-scaled(url("assets/text-select-end.png"), url("assets/text-select-end@2.png")); + padding-right: 10px; } + .entry.cursor-handle.insertion-cursor:dir(ltr), .entry.cursor-handle.insertion-cursor:dir(rtl), + .cursor-handle.insertion-cursor:dir(ltr), + .cursor-handle.insertion-cursor:dir(rtl) { + -gtk-icon-source: -gtk-scaled(url("assets/slider-horz-scale-has-marks-above.png"), url("assets/slider-horz-scale-has-marks-above@2.png")); } + .entry.cursor-handle.top:hover:dir(ltr), .entry.cursor-handle.bottom:hover:dir(rtl), + .cursor-handle.top:hover:dir(ltr), + .cursor-handle.bottom:hover:dir(rtl) { + -gtk-icon-source: -gtk-scaled(url("assets/text-select-start-hover.png"), url("assets/text-select-start-hover@2.png")); + padding-left: 10px; } + .entry.cursor-handle.bottom:hover:dir(ltr), .entry.cursor-handle.top:hover:dir(rtl), + .cursor-handle.bottom:hover:dir(ltr), + .cursor-handle.top:hover:dir(rtl) { + -gtk-icon-source: -gtk-scaled(url("assets/text-select-end-hover.png"), url("assets/text-select-end-hover@2.png")); + padding-right: 10px; } + .entry.cursor-handle.insertion-cursor:hover:dir(ltr), .entry.cursor-handle.insertion-cursor:hover:dir(rtl), + .cursor-handle.insertion-cursor:hover:dir(ltr), + .cursor-handle.insertion-cursor:hover:dir(rtl) { + -gtk-icon-source: -gtk-scaled(url("assets/slider-horz-scale-has-marks-above-hover.png"), url("assets/slider-horz-scale-has-marks-above-hover@2.png")); } + .entry.cursor-handle.top:active:dir(ltr), .entry.cursor-handle.bottom:active:dir(rtl), + .cursor-handle.top:active:dir(ltr), + .cursor-handle.bottom:active:dir(rtl) { + -gtk-icon-source: -gtk-scaled(url("assets/text-select-start-active.png"), url("assets/text-select-start-active@2.png")); + padding-left: 10px; } + .entry.cursor-handle.bottom:active:dir(ltr), .entry.cursor-handle.top:active:dir(rtl), + .cursor-handle.bottom:active:dir(ltr), + .cursor-handle.top:active:dir(rtl) { + -gtk-icon-source: -gtk-scaled(url("assets/text-select-end-active.png"), url("assets/text-select-end-active@2.png")); + padding-right: 10px; } + .entry.cursor-handle.insertion-cursor:active:dir(ltr), .entry.cursor-handle.insertion-cursor:active:dir(rtl), + .cursor-handle.insertion-cursor:active:dir(ltr), + .cursor-handle.insertion-cursor:active:dir(rtl) { + -gtk-icon-source: -gtk-scaled(url("assets/slider-horz-scale-has-marks-above-active.png"), url("assets/slider-horz-scale-has-marks-above-active@2.png")); } + +/* Decouple the font of context menus from their entry/textview */ +.context-menu { + font: initial; } + +.touch-selection { + font: initial; + color: #F7F7F7; + border: none; + background-color: rgba(24, 24, 24, 0.9); + background-clip: padding-box; + outline-color: rgba(247, 247, 247, 0.3); + box-shadow: none; + text-shadow: 0 1px black; + icon-shadow: 0 1px black; } + .touch-selection:backdrop { + text-shadow: none; } + .touch-selection .button { + color: #F7F7F7; + border-color: black; + background-color: #181818; + background-image: none; + background-clip: padding-box; + box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.05); } + .touch-selection .button:hover { + color: white; + border-color: #101010; + background-color: #373737; + background-image: none; + background-clip: padding-box; + box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.05); } + .touch-selection .button:active, .touch-selection .button:checked { + color: white; + border-color: black; + background-color: #181818; + background-image: none; + background-clip: padding-box; + box-shadow: inset 0 2px 3px -1px rgba(0, 0, 0, 0.2); } + .touch-selection .button:insensitive, .touch-selection .button:backdrop:insensitive { + color: #888888; + background-color: rgba(46, 46, 46, 0.5); + background-image: none; + border-color: rgba(8, 8, 8, 0.5); + background-clip: padding-box; + box-shadow: none; } + .touch-selection .button:backdrop { + color: #F7F7F7; + border-color: rgba(0, 0, 0, 0.7); + background-color: rgba(24, 24, 24, 0.7); + background-image: none; + background-clip: padding-box; + box-shadow: none; } + .touch-selection .check { + icon-shadow: none; + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } + .touch-selection .check:hover { + icon-shadow: none; + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-hover-dark.png"), url("assets/checkbox-unchecked-hover-dark@2.png")); } + .touch-selection .check:active { + icon-shadow: none; + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-active-dark.png"), url("assets/checkbox-unchecked-active-dark@2.png")); } + .touch-selection .check:insensitive { + icon-shadow: none; + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } + .touch-selection .check:inconsistent { + icon-shadow: none; + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } + .touch-selection .check:inconsistent:hover { + icon-shadow: none; + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-hover-dark.png"), url("assets/checkbox-mixed-hover-dark@2.png")); } + .touch-selection .check:inconsistent:selected { + icon-shadow: none; + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-active-dark.png"), url("assets/checkbox-mixed-active-dark@2.png")); } + .touch-selection .check:inconsistent:insensitive { + icon-shadow: none; + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } + .touch-selection .check:checked { + icon-shadow: none; + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } + .touch-selection .check:checked:insensitive { + icon-shadow: none; + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } + .touch-selection .check:checked:hover { + icon-shadow: none; + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-hover-dark.png"), url("assets/checkbox-checked-hover-dark@2.png")); } + .touch-selection .check:checked:active { + icon-shadow: none; + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-active-dark.png"), url("assets/checkbox-checked-active-dark@2.png")); } + .touch-selection .check:backdrop:checked { + icon-shadow: none; + -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-backdrop-dark.png"), url("assets/checkbox-checked-backdrop-dark@2.png")); } + .touch-selection .radio { + icon-shadow: none; + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } + .touch-selection .radio:hover { + icon-shadow: none; + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-hover-dark.png"), url("assets/radio-unchecked-hover-dark@2.png")); } + .touch-selection .radio:active { + icon-shadow: none; + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-active-dark.png"), url("assets/radio-unchecked-active-dark@2.png")); } + .touch-selection .radio:insensitive { + icon-shadow: none; + -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } + .touch-selection .radio:inconsistent { + icon-shadow: none; + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } + .touch-selection .radio:inconsistent:hover { + icon-shadow: none; + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-hover-dark.png"), url("assets/radio-mixed-hover-dark@2.png")); } + .touch-selection .radio:inconsistent:selected { + icon-shadow: none; + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-active-dark.png"), url("assets/radio-mixed-active-dark@2.png")); } + .touch-selection .radio:inconsistent:insensitive { + icon-shadow: none; + -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } + .touch-selection .radio:checked { + icon-shadow: none; + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } + .touch-selection .radio:checked:insensitive { + icon-shadow: none; + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } + .touch-selection .radio:checked:hover { + icon-shadow: none; + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-hover-dark.png"), url("assets/radio-checked-hover-dark@2.png")); } + .touch-selection .radio:checked:active { + icon-shadow: none; + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-active-dark.png"), url("assets/radio-checked-active-dark@2.png")); } + .touch-selection .radio:backdrop:checked { + icon-shadow: none; + -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-backdrop-dark.png"), url("assets/radio-checked-backdrop-dark@2.png")); } + +.overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.5, to(#a6afb8), to(rgba(166, 175, 184, 0))), -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(61, 61, 61, 0.07)), to(rgba(61, 61, 61, 0))); + background-size: 100% 5%, 100% 100%; + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; } + .overshoot.top:backdrop { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.5, to(#bac0c7), to(rgba(186, 192, 199, 0))); + background-size: 100% 5%; + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; } + +.overshoot.bottom { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.5, to(#a6afb8), to(rgba(166, 175, 184, 0))), -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(61, 61, 61, 0.07)), to(rgba(61, 61, 61, 0))); + background-size: 100% 5%, 100% 100%; + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; } + .overshoot.bottom:backdrop { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.5, to(#bac0c7), to(rgba(186, 192, 199, 0))); + background-size: 100% 5%; + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; } + +.overshoot.left { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.5, to(#a6afb8), to(rgba(166, 175, 184, 0))), -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(61, 61, 61, 0.07)), to(rgba(61, 61, 61, 0))); + background-size: 5% 100%, 100% 100%; + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; } + .overshoot.left:backdrop { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.5, to(#bac0c7), to(rgba(186, 192, 199, 0))); + background-size: 5% 100%; + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; } + +.overshoot.right { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.5, to(#a6afb8), to(rgba(166, 175, 184, 0))), -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(61, 61, 61, 0.07)), to(rgba(61, 61, 61, 0))); + background-size: 5% 100%, 100% 100%; + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; } + .overshoot.right:backdrop { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.5, to(#bac0c7), to(rgba(186, 192, 199, 0))); + background-size: 5% 100%; + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; } + +.undershoot.top { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-top: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center top; } + +.undershoot.bottom { + background-color: transparent; + background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-bottom: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center bottom; } + +.undershoot.left { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-left: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left center; } + +.undershoot.right { + background-color: transparent; + background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); + padding-right: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right center; } + +.regular-button { + background-color: #fefefe; + background-image: none; + color: #3D3D3D; + border-color: #c2c8ce; + box-shadow: 0 1px rgba(0, 0, 0, 0.1); + text-shadow: none; + icon-shadow: none; } + .regular-button:hover { + -gtk-image-effect: highlight; + background-color: white; + background-image: none; + color: #3D3D3D; + border-color: #c2c8ce; + border-bottom-color: #98a2ac; + box-shadow: 0 1px rgba(0, 0, 0, 0.15); + text-shadow: none; + icon-shadow: none; } + .regular-button:active { + box-shadow: inset 0 1px 1px 0px rgba(0, 0, 0, 0.05); + border-color: #c2c8ce; + border-top-color: #7b8896; + background-color: #eaecee; + background-image: none; + text-shadow: none; + icon-shadow: none; } + .regular-button:disabled { + background-color: #F5F6F7; + background-image: none; + border-color: rgba(194, 200, 206, 0.7); + box-shadow: 0 1px transparent; } + .regular-button:disabled .label, .regular-button:disabled { + color: #999a9a; } + +.regular-entry { + background-color: transparent; + background-image: linear-gradient(to bottom, #eaecee, #fbfbfc 3px, #FFFFFF 90%); + color: #3D3D3D; + border-color: #c2c8ce; + border-top-color: #cccccc; + box-shadow: inset 0 1px 1px 0px rgba(0, 0, 0, 0.05); + background-color: #FFFFFF; } + .regular-entry else { + border-top-color: #cccccc; } + .regular-entry:focus { + background-color: transparent; + background-image: linear-gradient(to bottom, #eaecee, #fbfbfc 3px, #FFFFFF 90%); + box-shadow: inset 0 1px 1px 0px rgba(0, 0, 0, 0.05); + border-color: #e95420; } + .regular-entry:disabled { + background-color: transparent; + background-image: linear-gradient(to bottom, #eaecee, #fbfbfc 3px, #FFFFFF 90%); + background-color: transparent; + border-color: rgba(194, 200, 206, 0.7); + box-shadow: none; + color: #9e9e9e; } + +.regular-button { + background-color: #454545; + color: #F7F7F7; + border-color: #2b2b2b; + box-shadow: 0 1px rgba(0, 0, 0, 0.1); } + +.regular-button:hover { + -gtk-icon-effect: highlight; + background-color: #474747; + color: #F7F7F7; + border-color: #2b2b2b; + border-bottom-color: #050505; + box-shadow: 0 1px rgba(0, 0, 0, 0.15); } + +.regular-button:active { + box-shadow: inset 0 1px 1px 0px rgba(0, 0, 0, 0.05); + border-color: #2b2b2b; + border-top-color: #171717; + background-color: #2b2b2b; } + +.regular-button:disabled { + background-color: #353535; + border-color: rgba(43, 43, 43, 0.7); + box-shadow: 0 1px transparent; } + +.regular-button:disabled label, .regular-button:disabled { + color: #969696; } + +.regular-entry { + color: #F7F7F7; + border-color: #2b2b2b; + box-shadow: inset 0 1px 1px 0px rgba(0, 0, 0, 0.05); + background-color: #3D3D3D; } + +.regular-entry else { + border-top-color: #0a0a0a; } + +.regular-entry:focus { + box-shadow: inset 0 1px 1px 0px rgba(0, 0, 0, 0.05); + border-color: #b53c12; } + +.regular-entry:disabled { + background-color: transparent; + border-color: rgba(43, 43, 43, 0.7); + box-shadow: none; + color: #969696; } + +/* GTK NAMED COLORS + ---------------- + use responsibly! */ +/* +widget text/foreground color */ +@define-color theme_fg_color #3D3D3D; +/* +text color for entries, views and content in general */ +@define-color theme_text_color #2D2D2D; +/* +widget base background color */ +@define-color theme_bg_color #F5F6F7; +/* +text widgets and the like base background color */ +@define-color theme_base_color #FFFFFF; +/* +base background color of selections */ +@define-color theme_selected_bg_color #e95420; +/* +text/foreground color of selections */ +@define-color theme_selected_fg_color #FFFFFF; +/* +base background color of insensitive widgets */ +@define-color insensitive_bg_color #f9fafa; +/* +text foreground color of insensitive widgets */ +@define-color insensitive_fg_color #999a9a; +/* +insensitive text widgets and the like base background color */ +@define-color insensitive_base_color #FFFFFF; +/* +widget text/foreground color on backdrop windows */ +@define-color theme_unfocused_fg_color #959697; +/* +text color for entries, views and content in general on backdrop windows */ +@define-color theme_unfocused_text_color #2D2D2D; +/* +widget base background color on backdrop windows */ +@define-color theme_unfocused_bg_color #edeef0; +/* +text widgets and the like base background color on backdrop windows */ +@define-color theme_unfocused_base_color #f2f2f2; +/* +base background color of selections on backdrop windows */ +@define-color theme_unfocused_selected_bg_color #e95420; +/* +text/foreground color of selections on backdrop windows */ +@define-color theme_unfocused_selected_fg_color #FFFFFF; +/* +widgets main borders color */ +@define-color borders #c2c8ce; +/* +widgets main borders color on backdrop windows */ +@define-color unfocused_borders #bac0c7; +/* +these are pretty self explicative */ +@define-color warning_color #f99b11; +@define-color error_color #c7162b; +@define-color success_color #0e8420; +/* +these colors are exported for the window manager and shouldn't be used in applications, +read if you used those and something break with a version upgrade you're on your own... */ +@define-color wm_title shade(#3D3D3D, 1.8); +@define-color wm_unfocused_title #959697; +@define-color wm_highlight rgba(0, 0, 0, 0.1); +@define-color wm_borders_edge rgba(0, 0, 0, 0.1); +@define-color wm_bg_a shade(#F5F6F7, 1.2); +@define-color wm_bg_b #F5F6F7; +@define-color wm_shadow alpha(black, 0.35); +@define-color wm_border alpha(black, 0.18); +@define-color wm_button_hover_color_a shade(#F5F6F7, 1.3); +@define-color wm_button_hover_color_b #F5F6F7; +@define-color wm_button_active_color_a shade(#F5F6F7, 0.85); +@define-color wm_button_active_color_b shade(#F5F6F7, 0.89); +@define-color wm_button_active_color_c shade(#F5F6F7, 0.9); +@define-color content_view_bg #FFFFFF; diff --git a/gtk-3.20/assets b/gtk-3.20/assets new file mode 120000 index 0000000..acd09df --- /dev/null +++ b/gtk-3.20/assets @@ -0,0 +1 @@ +../../Yaru-Orange/gtk-3.20/assets \ No newline at end of file diff --git a/gtk-3.20/gtk-dark.css b/gtk-3.20/gtk-dark.css new file mode 120000 index 0000000..5dad946 --- /dev/null +++ b/gtk-3.20/gtk-dark.css @@ -0,0 +1 @@ +../../Yaru-Orange/gtk-3.20/gtk-dark.css \ No newline at end of file diff --git a/gtk-3.20/gtk-light.css b/gtk-3.20/gtk-light.css new file mode 120000 index 0000000..6c414ac --- /dev/null +++ b/gtk-3.20/gtk-light.css @@ -0,0 +1 @@ +../../Yaru-Orange/gtk-3.20/gtk-light.css \ No newline at end of file diff --git a/gtk-3.20/gtk.css b/gtk-3.20/gtk.css new file mode 100644 index 0000000..c6a2d8f --- /dev/null +++ b/gtk-3.20/gtk.css @@ -0,0 +1,5782 @@ +/*************************** + * Check and Radio buttons * + ***************************/ +* { + padding: 0; + -GtkToolButton-icon-spacing: 4; + -GtkTextView-error-underline-color: #c7162b; + -GtkScrolledWindow-scrollbar-spacing: 0; + -GtkToolItemGroup-expander-size: 11; + -GtkWidget-text-handle-width: 20; + -GtkWidget-text-handle-height: 24; + -GtkDialog-button-spacing: 4; + -GtkDialog-action-area-border: 0; + outline-color: alpha(currentColor,0.3); + outline-style: dashed; + outline-offset: -3px; + outline-width: 1px; + -gtk-outline-radius: 2px; + -gtk-secondary-caret-color: #e95420; } + +/*************** + * Base States * + ***************/ +.background { + color: #3D3D3D; + background-color: #F7F7F7; } + .background:backdrop { + color: #626262; + background-color: #F7F7F7; + text-shadow: none; + -gtk-icon-shadow: none; } + +/* + These wildcard seems unavoidable, need to investigate. + Wildcards are bad and troublesome, use them with care, + or better, just don't. + Everytime a wildcard is used a kitten dies, painfully. +*/ +*:disabled { + -gtk-icon-effect: dim; } + +.gtkstyle-fallback { + color: #3D3D3D; + background-color: #F7F7F7; } + .gtkstyle-fallback:hover { + color: #3D3D3D; + background-color: white; } + .gtkstyle-fallback:active { + color: #3D3D3D; + background-color: #dedede; } + .gtkstyle-fallback:disabled { + color: #9a9a9a; + background-color: #fafafa; } + .gtkstyle-fallback:selected { + color: #FFFFFF; + background-color: #e95420; } + +.view, iconview, +.view text, +iconview text, +textview text { + color: black; + background-color: #ffffff; } + .view:backdrop, iconview:backdrop, + .view text:backdrop, + iconview text:backdrop, + textview text:backdrop { + color: #323232; + background-color: #fcfcfc; } + .view:backdrop:disabled, iconview:backdrop:disabled, + .view text:backdrop:disabled, + iconview text:backdrop:disabled, + textview text:backdrop:disabled { + color: #d1d1d1; } + .view:disabled, iconview:disabled, + .view text:disabled, + iconview text:disabled, + textview text:disabled { + color: #9a9a9a; + background-color: #fafafa; } + .view:selected:focus, iconview:selected:focus, .view:selected, iconview:selected, + .view text:selected:focus, + iconview text:selected:focus, + textview text:selected:focus, + .view text:selected, + iconview text:selected, + textview text:selected { + border-radius: 3px; } + +textview border { + background-color: #fbfbfb; } + +.rubberband, +rubberband, +.content-view rubberband, +.content-view .rubberband, +treeview.view rubberband, +flowbox rubberband { + border: 1px solid #c34113; + background-color: rgba(195, 65, 19, 0.2); } + +flowbox flowboxchild { + padding: 3px; } + flowbox flowboxchild:selected { + outline-offset: -2px; } + +.content-view .tile { + margin: 2px; + background-color: transparent; + border-radius: 0; + padding: 0; } + .content-view .tile:backdrop { + background-color: transparent; } + .content-view .tile:active, .content-view .tile:selected { + background-color: transparent; } + .content-view .tile:disabled { + background-color: transparent; } + +label { + caret-color: currentColor; } + label selection { + background-color: #e95420; + color: #FFFFFF; } + label:disabled { + color: #9a9a9a; } + button label:disabled { + color: inherit; } + label:disabled:backdrop { + color: #d1d1d1; } + button label:disabled:backdrop { + color: inherit; } + label.error { + color: #c7162b; } + label.error:disabled { + color: rgba(199, 22, 43, 0.5); } + label.error:disabled:backdrop { + color: rgba(199, 22, 43, 0.4); } + +.dim-label, .titlebar:not(headerbar) .subtitle, +headerbar .subtitle, label.separator { + opacity: 0.55; + text-shadow: none; } + +assistant .sidebar { + background-color: #ffffff; + border-top: 1px solid #c4c4c4; } + assistant .sidebar:backdrop { + background-color: #fcfcfc; + border-color: #cecece; } + +assistant.csd .sidebar { + border-top-style: none; } + +assistant .sidebar label { + padding: 6px 12px; } + +assistant .sidebar label.highlight { + background-color: #d2d2d2; } + +.osd .scale-popup, .app-notification, +.app-notification.frame, .csd popover.background.osd, popover.background.osd, .csd popover.background.touch-selection, .csd popover.background.magnifier, popover.background.touch-selection, popover.background.magnifier, +.osd { + color: #eeeeec; + border: none; + background-color: rgba(29, 29, 29, 0.975); + background-clip: padding-box; + text-shadow: 0 1px black; + -gtk-icon-shadow: 0 1px black; } + .osd .scale-popup:backdrop, .app-notification:backdrop, popover.background.osd:backdrop, popover.background.touch-selection:backdrop, popover.background.magnifier:backdrop, + .osd:backdrop { + text-shadow: none; + -gtk-icon-shadow: none; } + +/********************* + * Spinner Animation * + *********************/ +@keyframes spin { + to { + -gtk-icon-transform: rotate(1turn); } } + +spinner { + background: none; + opacity: 0; + -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } + spinner:backdrop { + color: #626262; } + spinner:checked { + opacity: 1; + animation: spin 1s linear infinite; } + spinner:checked:disabled { + opacity: 0.5; } + +/********************** + * General Typography * + **********************/ +.large-title { + font-weight: 300; + font-size: 24pt; } + +.title-1 { + font-weight: 800; + font-size: 20pt; } + +.title-2 { + font-weight: 800; + font-size: 15pt; } + +.title-3 { + font-weight: 700; + font-size: 15pt; } + +.title-4 { + font-weight: 700; + font-size: 13pt; } + +.heading { + font-weight: 700; + font-size: 11pt; } + +.body { + font-weight: 400; + font-size: 11pt; } + +.caption-heading { + font-weight: 700; + font-size: 9pt; } + +.caption { + font-weight: 400; + font-size: 9pt; } + +/**************** + * Text Entries * + ****************/ +spinbutton:not(.vertical), +entry { + min-height: 32px; + padding-left: 8px; + padding-right: 8px; + border: 1px solid; + border-radius: 4px; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + color: black; + border-color: #c4c4c4; + background-color: #ffffff; + box-shadow: inset 0 0 0 1px rgba(239, 134, 97, 0); } + spinbutton:not(.vertical) image.left, + entry image.left { + margin-right: 6px; } + spinbutton:not(.vertical) image.right, + entry image.right { + margin-left: 6px; } + spinbutton.flat:not(.vertical), + entry.flat:focus, + entry.flat:backdrop, + entry.flat:disabled, + entry.flat { + min-height: 0; + padding: 2px; + background-color: transparent; + border-color: transparent; + border-radius: 0; } + spinbutton:focus:not(.vertical), + entry:focus { + box-shadow: inset 0 0 0 1px rgba(239, 134, 97, 0.7); + border-color: rgba(239, 134, 97, 0.7); } + spinbutton:disabled:not(.vertical), + entry:disabled { + color: #9a9a9a; + border-color: #c4c4c4; + background-color: #fafafa; + box-shadow: none; } + spinbutton:backdrop:not(.vertical), + entry:backdrop { + color: #323232; + border-color: #cecece; + background-color: #fcfcfc; + box-shadow: none; + transition: 200ms ease-out; } + spinbutton:backdrop:disabled:not(.vertical), + entry:backdrop:disabled { + color: #d1d1d1; + border-color: #cecece; + background-color: #fafafa; + box-shadow: none; } + spinbutton.error:not(.vertical), + entry.error { + color: #c7162b; + border-color: #c7162b; } + spinbutton.error:focus:not(.vertical), + entry.error:focus { + box-shadow: inset 0 0 0 1px #c7162b; + border-color: #c7162b; } + spinbutton.error:not(.vertical) selection, + entry.error selection { + background-color: #c7162b; } + spinbutton.warning:not(.vertical), + entry.warning { + color: #f99b11; + border-color: #f99b11; } + spinbutton.warning:focus:not(.vertical), + entry.warning:focus { + box-shadow: inset 0 0 0 1px #f99b11; + border-color: #f99b11; } + spinbutton.warning:not(.vertical) selection, + entry.warning selection { + background-color: #f99b11; } + spinbutton:not(.vertical) image, + entry image { + color: #646464; } + spinbutton:not(.vertical) image:hover, + entry image:hover { + color: #3D3D3D; } + spinbutton:not(.vertical) image:active, + entry image:active { + color: #e95420; } + spinbutton:not(.vertical) image:backdrop, + entry image:backdrop { + color: #818181; } + spinbutton:drop(active):not(.vertical), + entry:drop(active):focus, + entry:drop(active) { + border-color: #109b26; + box-shadow: inset 0 0 0 1px #109b26; } + .osd spinbutton:not(.vertical), .osd entry { + color: white; + border-color: rgba(0, 0, 0, 0.7); + background-color: rgba(0, 0, 0, 0.5); + background-clip: padding-box; + box-shadow: none; + text-shadow: 0 1px black; + -gtk-icon-shadow: 0 1px black; } + .osd spinbutton:focus:not(.vertical), .osd entry:focus { + color: white; + border-color: #e95420; + background-color: rgba(0, 0, 0, 0.5); + background-clip: padding-box; + box-shadow: inset 0 0 0 1px rgba(239, 134, 97, 0.7); + text-shadow: 0 1px black; + -gtk-icon-shadow: 0 1px black; } + .osd spinbutton:backdrop:not(.vertical), .osd entry:backdrop { + color: white; + border-color: rgba(0, 0, 0, 0.7); + background-color: rgba(0, 0, 0, 0.5); + background-clip: padding-box; + box-shadow: none; + text-shadow: none; + -gtk-icon-shadow: none; } + .osd spinbutton:disabled:not(.vertical), .osd entry:disabled { + color: #868685; + border-color: rgba(0, 0, 0, 0.7); + background-color: rgba(50, 50, 50, 0.5); + background-clip: padding-box; + box-shadow: none; + text-shadow: none; + -gtk-icon-shadow: none; } + +spinbutton:not(.vertical) progress, +entry progress { + margin: 2px -6px; + background-color: transparent; + background-image: none; + border-radius: 0; + border-width: 0 0 2px; + border-color: #e95420; + border-style: solid; + box-shadow: none; } + spinbutton:not(.vertical) progress:backdrop, + entry progress:backdrop { + background-color: transparent; } + +.linked:not(.vertical) > spinbutton:focus:not(.vertical) + spinbutton:not(.vertical), .linked:not(.vertical) > spinbutton:focus:not(.vertical) + button, .linked:not(.vertical) > spinbutton:focus:not(.vertical) + combobox > box > button.combo, .linked:not(.vertical) > spinbutton:focus:not(.vertical) + entry, .linked:not(.vertical) > entry:focus + button, .linked:not(.vertical) > entry:focus + combobox > box > button.combo, .linked:not(.vertical) > entry:focus + spinbutton:not(.vertical), .linked:not(.vertical) > entry:focus + entry { + border-left-color: rgba(239, 134, 97, 0.7); } + +.linked:not(.vertical) > spinbutton:focus.error:not(.vertical) + spinbutton:not(.vertical), .linked:not(.vertical) > spinbutton:focus.error:not(.vertical) + button, .linked:not(.vertical) > spinbutton:focus.error:not(.vertical) + combobox > box > button.combo, .linked:not(.vertical) > spinbutton:focus.error:not(.vertical) + entry, .linked:not(.vertical) > entry:focus.error + button, .linked:not(.vertical) > entry:focus.error + combobox > box > button.combo, .linked:not(.vertical) > entry:focus.error + spinbutton:not(.vertical), .linked:not(.vertical) > entry:focus.error + entry { + border-left-color: #c7162b; } + +.linked:not(.vertical) > spinbutton:drop(active):not(.vertical) + spinbutton:not(.vertical), .linked:not(.vertical) > spinbutton:drop(active):not(.vertical) + button, .linked:not(.vertical) > spinbutton:drop(active):not(.vertical) + combobox > box > button.combo, .linked:not(.vertical) > spinbutton:drop(active):not(.vertical) + entry, .linked:not(.vertical) > entry:drop(active) + button, .linked:not(.vertical) > entry:drop(active) + combobox > box > button.combo, .linked:not(.vertical) > entry:drop(active) + spinbutton:not(.vertical), .linked:not(.vertical) > entry:drop(active) + entry { + border-left-color: #109b26; } + +.linked.vertical > spinbutton:not(:disabled):not(.vertical) + entry:not(:disabled), .linked.vertical > spinbutton:not(:disabled):not(.vertical) + spinbutton:not(:disabled):not(.vertical), .linked.vertical > entry:not(:disabled) + entry:not(:disabled), .linked.vertical > entry:not(:disabled) + spinbutton:not(:disabled):not(.vertical) { + border-top-color: #ededed; } + .linked.vertical > spinbutton:not(:disabled):not(.vertical) + entry:not(:disabled):backdrop, .linked.vertical > spinbutton:not(:disabled):not(.vertical) + spinbutton:not(:disabled):backdrop:not(.vertical), .linked.vertical > entry:not(:disabled) + entry:not(:disabled):backdrop, .linked.vertical > entry:not(:disabled) + spinbutton:not(:disabled):backdrop:not(.vertical) { + border-top-color: #efefef; } + +.linked.vertical > spinbutton:disabled:not(.vertical) + spinbutton:disabled:not(.vertical), .linked.vertical > spinbutton:disabled:not(.vertical) + entry:disabled, .linked.vertical > entry:disabled + spinbutton:disabled:not(.vertical), .linked.vertical > entry:disabled + entry:disabled { + border-top-color: #ededed; } + +.linked.vertical > spinbutton:not(.vertical) + spinbutton:focus:not(:only-child):not(.vertical), +.linked.vertical > spinbutton:not(.vertical) + entry:focus:not(:only-child), .linked.vertical > entry + spinbutton:focus:not(:only-child):not(.vertical), +.linked.vertical > entry + entry:focus:not(:only-child) { + border-top-color: rgba(239, 134, 97, 0.7); } + +.linked.vertical > spinbutton:not(.vertical) + spinbutton:focus.error:not(:only-child):not(.vertical), +.linked.vertical > spinbutton:not(.vertical) + entry:focus.error:not(:only-child), .linked.vertical > entry + spinbutton:focus.error:not(:only-child):not(.vertical), +.linked.vertical > entry + entry:focus.error:not(:only-child) { + border-top-color: #c7162b; } + +.linked.vertical > spinbutton:not(.vertical) + spinbutton:drop(active):not(:only-child):not(.vertical), +.linked.vertical > spinbutton:not(.vertical) + entry:drop(active):not(:only-child), .linked.vertical > entry + spinbutton:drop(active):not(:only-child):not(.vertical), +.linked.vertical > entry + entry:drop(active):not(:only-child) { + border-top-color: #109b26; } + +.linked.vertical > spinbutton:focus:not(:only-child):not(.vertical) + spinbutton:not(.vertical), +.linked.vertical > spinbutton:focus:not(:only-child):not(.vertical) + entry, +.linked.vertical > spinbutton:focus:not(:only-child):not(.vertical) + button, +.linked.vertical > spinbutton:focus:not(:only-child):not(.vertical) + combobox > box > button.combo, .linked.vertical > entry:focus:not(:only-child) + spinbutton:not(.vertical), +.linked.vertical > entry:focus:not(:only-child) + entry, +.linked.vertical > entry:focus:not(:only-child) + button, +.linked.vertical > entry:focus:not(:only-child) + combobox > box > button.combo { + border-top-color: rgba(239, 134, 97, 0.7); } + +.linked.vertical > spinbutton:focus.error:not(:only-child):not(.vertical) + spinbutton:not(.vertical), +.linked.vertical > spinbutton:focus.error:not(:only-child):not(.vertical) + entry, +.linked.vertical > spinbutton:focus.error:not(:only-child):not(.vertical) + button, +.linked.vertical > spinbutton:focus.error:not(:only-child):not(.vertical) + combobox > box > button.combo, .linked.vertical > entry:focus.error:not(:only-child) + spinbutton:not(.vertical), +.linked.vertical > entry:focus.error:not(:only-child) + entry, +.linked.vertical > entry:focus.error:not(:only-child) + button, +.linked.vertical > entry:focus.error:not(:only-child) + combobox > box > button.combo { + border-top-color: #c7162b; } + +.linked.vertical > spinbutton:drop(active):not(:only-child):not(.vertical) + spinbutton:not(.vertical), +.linked.vertical > spinbutton:drop(active):not(:only-child):not(.vertical) + entry, +.linked.vertical > spinbutton:drop(active):not(:only-child):not(.vertical) + button, +.linked.vertical > spinbutton:drop(active):not(:only-child):not(.vertical) + combobox > box > button.combo, .linked.vertical > entry:drop(active):not(:only-child) + spinbutton:not(.vertical), +.linked.vertical > entry:drop(active):not(:only-child) + entry, +.linked.vertical > entry:drop(active):not(:only-child) + button, +.linked.vertical > entry:drop(active):not(:only-child) + combobox > box > button.combo { + border-top-color: #109b26; } + +spinbutton.error:not(.vertical), +entry.error { + color: #c7162b; } + +treeview entry:focus:dir(rtl), treeview entry:focus:dir(ltr) { + background-color: #ffffff; + transition-property: color, background; } + +treeview entry.flat, treeview entry { + border-radius: 0; + background-image: none; + background-color: #ffffff; } + treeview entry.flat:focus, treeview entry:focus { + border-color: #e95420; } + +.entry-tag { + padding: 5px; + margin-top: 2px; + margin-bottom: 2px; + border-style: none; + color: #FFFFFF; + background-color: #e95420; } + :dir(ltr) .entry-tag { + margin-left: 8px; + margin-right: -5px; } + :dir(rtl) .entry-tag { + margin-left: -5px; + margin-right: 8px; } + .entry-tag:hover { + background-color: #ee784e; } + :backdrop .entry-tag { + color: #fcfcfc; + background-color: #e95420; } + .entry-tag.button { + background-color: transparent; + color: rgba(255, 255, 255, 0.7); } + :not(:backdrop) .entry-tag.button:hover { + border: 1px solid #e95420; + color: #FFFFFF; } + :not(:backdrop) .entry-tag.button:active { + background-color: #e95420; + color: rgba(255, 255, 255, 0.7); } + +/*********** + * Buttons * + ***********/ +@keyframes needs_attention { + from { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#e95420), to(transparent)); } + to { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#e95420), to(transparent)); } } + +button.titlebutton, notebook > header > tabs > arrow, +button { + min-height: 24px; + min-width: 16px; + padding: 4px 9px; + border: 1px solid; + border-radius: 4px; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + color: #3D3D3D; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #c4c4c4; + background-image: image(#fcfcfc); + text-shadow: 0 1px rgba(255, 255, 255, 0.769231); + -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); + box-shadow: 0 1px rgba(0, 0, 0, 0.05); } + button.titlebutton, button.sidebar-button, notebook > header > tabs > arrow, notebook > header > tabs > arrow.flat, + button.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + text-shadow: none; + -gtk-icon-shadow: none; + transition: none; } + button.titlebutton:hover, button.sidebar-button:hover, notebook > header > tabs > arrow:hover, + button.flat:hover { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + transition-duration: 500ms; } + button.titlebutton:hover:active, button.sidebar-button:hover:active, notebook > header > tabs > arrow:hover:active, + button.flat:hover:active { + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + notebook > header > tabs > arrow:hover, + button:hover { + color: #3D3D3D; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #c4c4c4; + border-bottom-color: #bababa; + text-shadow: 0 1px rgba(255, 255, 255, 0.769231); + -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); + box-shadow: inset 0 1px white, 0 1px 2px rgba(0, 0, 0, 0.07); + box-shadow: 0 1px rgba(0, 0, 0, 0.15); + background-image: image(white); + -gtk-icon-effect: highlight; } + notebook > header > tabs > arrow:active, notebook > header > tabs > arrow:checked, + button:active, + button:checked { + color: #3D3D3D; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #c4c4c4; + background-image: image(lightgray); + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + text-shadow: none; + -gtk-icon-shadow: none; + transition-duration: 50ms; } + notebook > header > tabs > arrow:backdrop, + button:backdrop.flat, + button:backdrop { + color: #626262; + border-color: #cecece; + background-image: image(#F7F7F7); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + transition: 200ms ease-out; + -gtk-icon-effect: none; } + notebook > header > tabs > arrow:backdrop:active, notebook > header > tabs > arrow:backdrop:checked, + button:backdrop.flat:active, + button:backdrop.flat:checked, + button:backdrop:active, + button:backdrop:checked { + color: #626262; + border-color: #cecece; + background-image: image(#e4e4e4); + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + notebook > header > tabs > arrow:backdrop:disabled, + button:backdrop.flat:disabled, + button:backdrop:disabled { + color: #d1d1d1; + border-color: #cecece; + background-image: image(#fafafa); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + notebook > header > tabs > arrow:backdrop:disabled:active, notebook > header > tabs > arrow:backdrop:disabled:checked, + button:backdrop.flat:disabled:active, + button:backdrop.flat:disabled:checked, + button:backdrop:disabled:active, + button:backdrop:disabled:checked { + color: #d1d1d1; + border-color: #cecece; + background-image: image(#e4e4e4); + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + button.titlebutton:backdrop, button.sidebar-button:backdrop, notebook > header > tabs > arrow:backdrop, button.titlebutton:disabled, button.sidebar-button:disabled, notebook > header > tabs > arrow:disabled, + button.flat:backdrop, + button.flat:disabled, + button.flat:backdrop:disabled { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + text-shadow: none; + -gtk-icon-shadow: none; } + notebook > header > tabs > arrow:disabled, + button:disabled { + color: #9a9a9a; + border-color: #c4c4c4; + background-image: image(#fafafa); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + notebook > header > tabs > arrow:disabled:active, notebook > header > tabs > arrow:disabled:checked, + button:disabled:active, + button:disabled:checked { + color: #9a9a9a; + border-color: #c4c4c4; + background-image: image(#e4e4e4); + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + notebook > header > tabs > arrow.image-button, + button.image-button { + min-width: 24px; + padding-left: 5px; + padding-right: 5px; } + notebook > header > tabs > arrow.text-button, + button.text-button { + padding-left: 16px; + padding-right: 16px; } + notebook > header > tabs > arrow.text-button.image-button, + button.text-button.image-button { + padding-left: 8px; + padding-right: 8px; } + notebook > header > tabs > arrow.text-button.image-button label, + button.text-button.image-button label { + padding-left: 8px; + padding-right: 8px; } + combobox:drop(active) button.combo, notebook > header > tabs > arrow:drop(active), + button:drop(active) { + color: #109b26; + border-color: #109b26; + box-shadow: inset 0 0 0 1px #109b26; } + +row:selected button { + border-color: #ac3911; } + +row:selected button.sidebar-button:not(:active):not(:checked):not(:hover):not(disabled), row:selected button.flat:not(:active):not(:checked):not(:hover):not(disabled) { + color: #FFFFFF; + border-color: transparent; } + row:selected button.sidebar-button:not(:active):not(:checked):not(:hover):not(disabled):backdrop, row:selected button.flat:not(:active):not(:checked):not(:hover):not(disabled):backdrop { + color: #fcfcfc; } + + +button.osd { + min-width: 26px; + min-height: 32px; + color: #eeeeec; + border-radius: 5px; + color: #eeeeec; + border-color: rgba(0, 0, 0, 0.7); + background-color: transparent; + background-image: image(rgba(52, 52, 52, 0.975)); + background-clip: padding-box; + text-shadow: 0 1px black; + -gtk-icon-shadow: 0 1px black; + outline-color: rgba(238, 238, 236, 0.3); + border: none; + box-shadow: none; } + + button.osd.image-button { + min-width: 34px; } + + button.osd:hover { + color: white; + border-color: rgba(0, 0, 0, 0.7); + background-color: transparent; + background-image: image(rgba(60, 60, 60, 0.975)); + background-clip: padding-box; + text-shadow: 0 1px black; + -gtk-icon-shadow: 0 1px black; + outline-color: rgba(238, 238, 236, 0.3); + border: none; + box-shadow: none; } + + button.osd:active, + button.osd:checked { + color: white; + border-color: rgba(0, 0, 0, 0.7); + background-color: transparent; + background-image: image(rgba(0, 0, 0, 0.7)); + background-clip: padding-box; + box-shadow: none; + text-shadow: none; + -gtk-icon-shadow: none; + outline-color: rgba(238, 238, 236, 0.3); + border: none; + box-shadow: none; } + + button.osd:disabled:backdrop, + button.osd:disabled { + color: #868685; + border-color: rgba(0, 0, 0, 0.7); + background-color: transparent; + background-image: image(rgba(50, 50, 50, 0.5)); + background-clip: padding-box; + box-shadow: none; + text-shadow: none; + -gtk-icon-shadow: none; + border: none; } + + button.osd:backdrop { + color: #eeeeec; + border-color: rgba(0, 0, 0, 0.7); + background-color: transparent; + background-image: image(rgba(29, 29, 29, 0.975)); + background-clip: padding-box; + box-shadow: none; + text-shadow: none; + -gtk-icon-shadow: none; + border: none; } + +.app-notification button, +.app-notification.frame button, .csd popover.background.touch-selection button, .csd popover.background.magnifier button, popover.background.touch-selection button, popover.background.magnifier button, .osd button { + color: #eeeeec; + border-color: rgba(0, 0, 0, 0.7); + background-color: transparent; + background-image: image(rgba(52, 52, 52, 0.975)); + background-clip: padding-box; + text-shadow: 0 1px black; + -gtk-icon-shadow: 0 1px black; + outline-color: rgba(238, 238, 236, 0.3); } + .app-notification button:hover, popover.background.touch-selection button:hover, popover.background.magnifier button:hover, .osd button:hover { + color: white; + border-color: rgba(0, 0, 0, 0.7); + background-color: transparent; + background-image: image(rgba(60, 60, 60, 0.975)); + background-clip: padding-box; + text-shadow: 0 1px black; + -gtk-icon-shadow: 0 1px black; + outline-color: rgba(238, 238, 236, 0.3); } + .app-notification button:active, popover.background.touch-selection button:active, popover.background.magnifier button:active, .app-notification button:checked, popover.background.touch-selection button:checked, popover.background.magnifier button:checked, .osd button:active:backdrop, .osd button:active, .osd button:checked:backdrop, .osd button:checked { + color: white; + border-color: rgba(0, 0, 0, 0.7); + background-color: transparent; + background-image: image(rgba(0, 0, 0, 0.7)); + background-clip: padding-box; + box-shadow: none; + text-shadow: none; + -gtk-icon-shadow: none; + outline-color: rgba(238, 238, 236, 0.3); } + .app-notification button:disabled, popover.background.touch-selection button:disabled, popover.background.magnifier button:disabled, .osd button:disabled:backdrop, .osd button:disabled { + color: #868685; + border-color: rgba(0, 0, 0, 0.7); + background-color: transparent; + background-image: image(rgba(50, 50, 50, 0.5)); + background-clip: padding-box; + box-shadow: none; + text-shadow: none; + -gtk-icon-shadow: none; } + .app-notification button:backdrop, popover.background.touch-selection button:backdrop, popover.background.magnifier button:backdrop, .osd button:backdrop { + color: #eeeeec; + border-color: rgba(0, 0, 0, 0.7); + background-color: transparent; + background-image: image(rgba(29, 29, 29, 0.975)); + background-clip: padding-box; + box-shadow: none; + text-shadow: none; + -gtk-icon-shadow: none; } + .app-notification button.flat, popover.background.touch-selection button.flat, popover.background.magnifier button.flat, .osd button.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: none; + text-shadow: 0 1px black; + -gtk-icon-shadow: 0 1px black; } + .app-notification button.flat:hover, popover.background.touch-selection button.flat:hover, popover.background.magnifier button.flat:hover, .osd button.flat:hover { + color: white; + border-color: rgba(0, 0, 0, 0.7); + background-color: transparent; + background-image: image(rgba(60, 60, 60, 0.975)); + background-clip: padding-box; + text-shadow: 0 1px black; + -gtk-icon-shadow: 0 1px black; + outline-color: rgba(238, 238, 236, 0.3); } + .app-notification button.flat:disabled, popover.background.touch-selection button.flat:disabled, popover.background.magnifier button.flat:disabled, .osd button.flat:disabled { + color: #868685; + border-color: rgba(0, 0, 0, 0.7); + background-color: transparent; + background-image: image(rgba(50, 50, 50, 0.5)); + background-clip: padding-box; + box-shadow: none; + text-shadow: none; + -gtk-icon-shadow: none; + background-image: none; + border-color: transparent; + box-shadow: none; } + .app-notification button.flat:backdrop, popover.background.touch-selection button.flat:backdrop, popover.background.magnifier button.flat:backdrop, .osd button.flat:backdrop { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + text-shadow: none; + -gtk-icon-shadow: none; } + .app-notification button.flat:active, popover.background.touch-selection button.flat:active, popover.background.magnifier button.flat:active, .app-notification button.flat:checked, popover.background.touch-selection button.flat:checked, popover.background.magnifier button.flat:checked, .osd button.flat:active, .osd button.flat:checked { + color: white; + border-color: rgba(0, 0, 0, 0.7); + background-color: transparent; + background-image: image(rgba(0, 0, 0, 0.7)); + background-clip: padding-box; + box-shadow: none; + text-shadow: none; + -gtk-icon-shadow: none; + outline-color: rgba(238, 238, 236, 0.3); } + + +button.suggested-action { + color: white; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #0c6d1a; + background-image: image(#11a428); + text-shadow: 0 -1px rgba(0, 0, 0, 0.73098); + -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.73098); + box-shadow: 0 1px rgba(0, 0, 0, 0.05); } + + button.suggested-action.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + text-shadow: none; + -gtk-icon-shadow: none; + color: #109b26; } + + button.suggested-action:hover { + color: white; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #0c6d1a; + border-bottom-color: #073f0f; + text-shadow: 0 -1px rgba(0, 0, 0, 0.68298); + -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.68298); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), 0 1px 2px rgba(0, 0, 0, 0.07); + box-shadow: 0 1px rgba(0, 0, 0, 0.15); + background-image: image(#12ad2a); } + + button.suggested-action:active, + button.suggested-action:checked { + color: white; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #0c6d1a; + background-image: image(#0a5b16); + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + text-shadow: none; + -gtk-icon-shadow: none; } + + button.suggested-action:backdrop, + button.suggested-action.flat:backdrop { + color: #cfebd4; + border-color: #109b26; + background-image: image(#109b26); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + + button.suggested-action:backdrop:active, + button.suggested-action:backdrop:checked, + button.suggested-action.flat:backdrop:active, + button.suggested-action.flat:backdrop:checked { + color: #d4e8d7; + border-color: #2a8b39; + background-image: image(#2a8b39); + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + + button.suggested-action:backdrop:disabled, + button.suggested-action.flat:backdrop:disabled { + color: #d1d1d1; + border-color: #cecece; + background-image: image(#fafafa); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + + button.suggested-action:backdrop:disabled:active, + button.suggested-action:backdrop:disabled:checked, + button.suggested-action.flat:backdrop:disabled:active, + button.suggested-action.flat:backdrop:disabled:checked { + color: #75b37e; + border-color: #2a8b39; + background-image: image(#2a8b39); + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + + button.suggested-action.flat:backdrop, + button.suggested-action.flat:disabled, + button.suggested-action.flat:backdrop:disabled { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + text-shadow: none; + -gtk-icon-shadow: none; + color: rgba(16, 155, 38, 0.8); } + + button.suggested-action:disabled { + color: #9a9a9a; + border-color: #c4c4c4; + background-image: image(#fafafa); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + + button.suggested-action:disabled:active, + button.suggested-action:disabled:checked { + color: #aad1b0; + border-color: #0c6d1a; + background-image: image(#2a8b39); + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + .osd button.suggested-action { + color: #eeeeec; + border-color: rgba(0, 0, 0, 0.7); + background-color: transparent; + background-image: image(rgba(16, 155, 38, 0.5)); + background-clip: padding-box; + text-shadow: 0 1px black; + -gtk-icon-shadow: 0 1px black; + outline-color: rgba(238, 238, 236, 0.3); } + .osd button.suggested-action:hover { + color: white; + border-color: rgba(0, 0, 0, 0.7); + background-color: transparent; + background-image: image(rgba(16, 155, 38, 0.7)); + background-clip: padding-box; + text-shadow: 0 1px black; + -gtk-icon-shadow: 0 1px black; + outline-color: rgba(238, 238, 236, 0.3); } + .osd button.suggested-action:active:backdrop, .osd button.suggested-action:active, .osd button.suggested-action:checked:backdrop, .osd button.suggested-action:checked { + color: white; + border-color: rgba(0, 0, 0, 0.7); + background-color: transparent; + background-image: image(#109b26); + background-clip: padding-box; + box-shadow: none; + text-shadow: none; + -gtk-icon-shadow: none; + outline-color: rgba(238, 238, 236, 0.3); } + .osd button.suggested-action:disabled:backdrop, .osd button.suggested-action:disabled { + color: #868685; + border-color: rgba(0, 0, 0, 0.7); + background-color: transparent; + background-image: image(rgba(50, 50, 50, 0.5)); + background-clip: padding-box; + box-shadow: none; + text-shadow: none; + -gtk-icon-shadow: none; } + .osd button.suggested-action:backdrop { + color: #eeeeec; + border-color: rgba(0, 0, 0, 0.7); + background-color: transparent; + background-image: image(rgba(16, 155, 38, 0.5)); + background-clip: padding-box; + box-shadow: none; + text-shadow: none; + -gtk-icon-shadow: none; } + + +button.destructive-action { + color: white; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #991121; + background-image: image(#d0172d); + text-shadow: 0 -1px rgba(0, 0, 0, 0.653333); + -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.653333); + box-shadow: 0 1px rgba(0, 0, 0, 0.05); } + + button.destructive-action.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + text-shadow: none; + -gtk-icon-shadow: none; + color: #c7162b; } + + button.destructive-action:hover { + color: white; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #991121; + border-bottom-color: #6b0c17; + text-shadow: 0 -1px rgba(0, 0, 0, 0.605333); + -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.605333); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px 2px rgba(0, 0, 0, 0.07); + box-shadow: 0 1px rgba(0, 0, 0, 0.15); + background-image: image(#d9182f); } + + button.destructive-action:active, + button.destructive-action:checked { + color: white; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #991121; + background-image: image(#870f1d); + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + text-shadow: none; + -gtk-icon-shadow: none; } + + button.destructive-action:backdrop, + button.destructive-action.flat:backdrop { + color: #f4d0d5; + border-color: #c7162b; + background-image: image(#c7162b); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + + button.destructive-action:backdrop:active, + button.destructive-action:backdrop:checked, + button.destructive-action.flat:backdrop:active, + button.destructive-action.flat:backdrop:checked { + color: #f0d5d8; + border-color: #b42c3c; + background-image: image(#b42c3c); + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + + button.destructive-action:backdrop:disabled, + button.destructive-action.flat:backdrop:disabled { + color: #d1d1d1; + border-color: #cecece; + background-image: image(#fafafa); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + + button.destructive-action:backdrop:disabled:active, + button.destructive-action:backdrop:disabled:checked, + button.destructive-action.flat:backdrop:disabled:active, + button.destructive-action.flat:backdrop:disabled:checked { + color: #ce7680; + border-color: #b42c3c; + background-image: image(#b42c3c); + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + + button.destructive-action.flat:backdrop, + button.destructive-action.flat:disabled, + button.destructive-action.flat:backdrop:disabled { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + text-shadow: none; + -gtk-icon-shadow: none; + color: rgba(199, 22, 43, 0.8); } + + button.destructive-action:disabled { + color: #9a9a9a; + border-color: #c4c4c4; + background-image: image(#fafafa); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + + button.destructive-action:disabled:active, + button.destructive-action:disabled:checked { + color: #e1aab1; + border-color: #991121; + background-image: image(#b42c3c); + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + .osd button.destructive-action { + color: #eeeeec; + border-color: rgba(0, 0, 0, 0.7); + background-color: transparent; + background-image: image(rgba(199, 22, 43, 0.5)); + background-clip: padding-box; + text-shadow: 0 1px black; + -gtk-icon-shadow: 0 1px black; + outline-color: rgba(238, 238, 236, 0.3); } + .osd button.destructive-action:hover { + color: white; + border-color: rgba(0, 0, 0, 0.7); + background-color: transparent; + background-image: image(rgba(199, 22, 43, 0.7)); + background-clip: padding-box; + text-shadow: 0 1px black; + -gtk-icon-shadow: 0 1px black; + outline-color: rgba(238, 238, 236, 0.3); } + .osd button.destructive-action:active:backdrop, .osd button.destructive-action:active, .osd button.destructive-action:checked:backdrop, .osd button.destructive-action:checked { + color: white; + border-color: rgba(0, 0, 0, 0.7); + background-color: transparent; + background-image: image(#c7162b); + background-clip: padding-box; + box-shadow: none; + text-shadow: none; + -gtk-icon-shadow: none; + outline-color: rgba(238, 238, 236, 0.3); } + .osd button.destructive-action:disabled:backdrop, .osd button.destructive-action:disabled { + color: #868685; + border-color: rgba(0, 0, 0, 0.7); + background-color: transparent; + background-image: image(rgba(50, 50, 50, 0.5)); + background-clip: padding-box; + box-shadow: none; + text-shadow: none; + -gtk-icon-shadow: none; } + .osd button.destructive-action:backdrop { + color: #eeeeec; + border-color: rgba(0, 0, 0, 0.7); + background-color: transparent; + background-image: image(rgba(199, 22, 43, 0.5)); + background-clip: padding-box; + box-shadow: none; + text-shadow: none; + -gtk-icon-shadow: none; } + +.stack-switcher > button { + outline-offset: -3px; } + .stack-switcher > button > label { + padding-left: 6px; + padding-right: 6px; } + .stack-switcher > button > image { + padding-left: 6px; + padding-right: 6px; + padding-top: 3px; + padding-bottom: 3px; } + .stack-switcher > button.text-button { + padding-left: 10px; + padding-right: 10px; } + .stack-switcher > button.image-button { + padding-left: 2px; + padding-right: 2px; } + .stack-switcher > button.needs-attention:active > label, + .stack-switcher > button.needs-attention:active > image, .stack-switcher > button.needs-attention:checked > label, + .stack-switcher > button.needs-attention:checked > image { + animation: none; + background-image: none; } + + +button.font separator, +button.file separator { + background-color: transparent; } + + +button.font > box > box > label { + font-weight: bold; } + +.primary-toolbar button { + -gtk-icon-shadow: none; } + + +button.circular { + border-radius: 9999px; + -gtk-outline-radius: 9999px; + padding: 4px; + /* circles instead of ellipses */ + background-origin: padding-box, border-box; + background-clip: padding-box, border-box; } + + button.circular label { + padding: 0; } + + button.circular:not(.flat):not(.osd):not(:checked):not(:active):not(:disabled):not(:backdrop) { + color: #3D3D3D; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #c4c4c4; + background-image: image(#fcfcfc); + text-shadow: 0 1px rgba(255, 255, 255, 0.769231); + -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); + box-shadow: 0 1px rgba(0, 0, 0, 0.05); + background-image: image(#fcfcfc), linear-gradient(to top, #bababa 25%, #c4c4c4 50%); + border-color: transparent; } + + button.circular:hover:not(.osd):not(:checked):not(:active):not(:disabled):not(:backdrop) { + color: #3D3D3D; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #c4c4c4; + border-bottom-color: #bababa; + text-shadow: 0 1px rgba(255, 255, 255, 0.769231); + -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); + box-shadow: inset 0 1px white, 0 1px 2px rgba(0, 0, 0, 0.07); + box-shadow: 0 1px rgba(0, 0, 0, 0.15); + background-image: image(white); + background-image: linear-gradient(to top, #F7F7F7, #fafafa 1px), linear-gradient(to top, #bababa 25%, #c4c4c4 50%); + border-color: transparent; } + +stacksidebar row.needs-attention > label, .stack-switcher > button.needs-attention > label, +.stack-switcher > button.needs-attention > image { + animation: needs_attention 150ms ease-in; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#e95420), to(transparent)), -gtk-gradient(radial, center center, 0, center center, 0.5, to(rgba(255, 255, 255, 0.769231)), to(transparent)); + background-size: 6px 6px, 6px 6px; + background-repeat: no-repeat; + background-position: right 3px, right 4px; } + stacksidebar row.needs-attention > label:backdrop, .stack-switcher > button.needs-attention > label:backdrop, + .stack-switcher > button.needs-attention > image:backdrop { + background-size: 6px 6px, 0 0; } + stacksidebar row.needs-attention > label:dir(rtl), .stack-switcher > button.needs-attention > label:dir(rtl), + .stack-switcher > button.needs-attention > image:dir(rtl) { + background-position: left 3px, left 4px; } + +.inline-toolbar toolbutton > button { + color: #3D3D3D; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #c4c4c4; + background-image: image(#fcfcfc); + text-shadow: 0 1px rgba(255, 255, 255, 0.769231); + -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); + box-shadow: 0 1px rgba(0, 0, 0, 0.05); } + .inline-toolbar toolbutton > button:hover { + color: #3D3D3D; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #c4c4c4; + border-bottom-color: #bababa; + text-shadow: 0 1px rgba(255, 255, 255, 0.769231); + -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); + box-shadow: inset 0 1px white, 0 1px 2px rgba(0, 0, 0, 0.07); + box-shadow: 0 1px rgba(0, 0, 0, 0.15); + background-image: image(white); } + .inline-toolbar toolbutton > button:active, .inline-toolbar toolbutton > button:checked { + color: #3D3D3D; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #c4c4c4; + background-image: image(lightgray); + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + text-shadow: none; + -gtk-icon-shadow: none; } + .inline-toolbar toolbutton > button:disabled { + color: #9a9a9a; + border-color: #c4c4c4; + background-image: image(#fafafa); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + .inline-toolbar toolbutton > button:disabled:active, .inline-toolbar toolbutton > button:disabled:checked { + color: #9a9a9a; + border-color: #c4c4c4; + background-image: image(#e4e4e4); + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + .inline-toolbar toolbutton > button:backdrop { + color: #626262; + border-color: #cecece; + background-image: image(#F7F7F7); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + .inline-toolbar toolbutton > button:backdrop:active, .inline-toolbar toolbutton > button:backdrop:checked { + color: #626262; + border-color: #cecece; + background-image: image(#e4e4e4); + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + .inline-toolbar toolbutton > button:backdrop:disabled { + color: #d1d1d1; + border-color: #cecece; + background-image: image(#fafafa); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + .inline-toolbar toolbutton > button:backdrop:disabled:active, .inline-toolbar toolbutton > button:backdrop:disabled:checked { + color: #d1d1d1; + border-color: #cecece; + background-image: image(#e4e4e4); + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + +.linked:not(.vertical) > combobox > box > button.combo, filechooser .path-bar.linked > button, .linked:not(.vertical) > spinbutton:not(.vertical), .linked:not(.vertical) > entry, .inline-toolbar button, .linked > button, toolbar.inline-toolbar toolbutton > button.flat { + border-right-style: none; + border-radius: 0; + -gtk-outline-radius: 0; } + +.linked:not(.vertical) > combobox:first-child > box > button.combo, combobox.linked button:nth-child(2):dir(rtl), filechooser .path-bar.linked > button:dir(rtl):last-child, filechooser .path-bar.linked > button:dir(ltr):first-child, .linked:not(.vertical) > spinbutton:first-child:not(.vertical), .linked:not(.vertical) > entry:first-child, .inline-toolbar button:first-child, .linked > button:first-child, toolbar.inline-toolbar toolbutton:first-child > button.flat { + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; + -gtk-outline-top-left-radius: 4px; + -gtk-outline-bottom-left-radius: 4px; } + +.linked:not(.vertical) > combobox:last-child > box > button.combo, combobox.linked button:nth-child(2):dir(ltr), filechooser .path-bar.linked > button:dir(rtl):first-child, filechooser .path-bar.linked > button:dir(ltr):last-child, .linked:not(.vertical) > spinbutton:last-child:not(.vertical), .linked:not(.vertical) > entry:last-child, .inline-toolbar button:last-child, .linked > button:last-child, toolbar.inline-toolbar toolbutton:last-child > button.flat { + border-right-style: solid; + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; + -gtk-outline-top-right-radius: 4px; + -gtk-outline-bottom-right-radius: 4px; } + +.linked:not(.vertical) > combobox:only-child > box > button.combo, filechooser .path-bar.linked > button:only-child, .linked:not(.vertical) > spinbutton:only-child:not(.vertical), .linked:not(.vertical) > entry:only-child, .inline-toolbar button:only-child, .linked > button:only-child, toolbar.inline-toolbar toolbutton:only-child > button.flat { + border-style: solid; + border-radius: 4px; + -gtk-outline-radius: 4px; } + +.linked.vertical > combobox > box > button.combo, .linked.vertical > spinbutton:not(.vertical), .linked.vertical > entry, .linked.vertical > button { + border-style: solid solid none solid; + border-radius: 0; + -gtk-outline-radius: 0; } + +.linked.vertical > combobox:first-child > box > button.combo, .linked.vertical > spinbutton:first-child:not(.vertical), .linked.vertical > entry:first-child, .linked.vertical > button:first-child { + border-top-left-radius: 4px; + border-top-right-radius: 4px; + -gtk-outline-top-left-radius: 4px; + -gtk-outline-top-right-radius: 4px; } + +.linked.vertical > combobox:last-child > box > button.combo, .linked.vertical > spinbutton:last-child:not(.vertical), .linked.vertical > entry:last-child, .linked.vertical > button:last-child { + border-bottom-style: solid; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + -gtk-outline-bottom-left-radius: 4px; + -gtk-outline-bottom-right-radius: 4px; } + +.linked.vertical > combobox:only-child > box > button.combo, .linked.vertical > spinbutton:only-child:not(.vertical), .linked.vertical > entry:only-child, .linked.vertical > button:only-child { + border-style: solid; + border-radius: 4px; + -gtk-outline-radius: 4px; } + +headerbar button.titlebutton:not(.appmenu), headerbar button.titlebutton:not(.appmenu):backdrop, .titlebar button.titlebutton:not(.appmenu), .titlebar button.titlebutton:not(.appmenu):backdrop, headerbar.selection-mode button.titlebutton:not(.appmenu), headerbar button.titlebutton:not(.appmenu):hover, .titlebar button.titlebutton:not(.appmenu):hover, headerbar button.titlebutton:not(.appmenu):active, .titlebar button.titlebutton:not(.appmenu):active, .scale-popup button:backdrop:hover, .scale-popup button:backdrop:disabled, .scale-popup button:backdrop, .scale-popup button:hover, calendar.button, button:link:hover, button:link:active, button:link:checked, +button:visited:hover, +button:visited:active, +button:visited:checked, button:link, +button:visited, list row button.image-button:not(.flat), modelbutton.flat:backdrop, modelbutton.flat:backdrop:hover, modelbutton.flat, +.menuitem.button.flat { + background-color: transparent; + background-image: none; + border-color: transparent; + box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(255, 255, 255, 0); + text-shadow: none; + -gtk-icon-shadow: none; } + +/* menu buttons */ +modelbutton.flat, +.menuitem.button.flat { + min-height: 26px; + padding-left: 5px; + padding-right: 5px; + border-radius: 4px; + outline-offset: -2px; } + modelbutton.flat:hover, + .menuitem.button.flat:hover { + background-color: rgba(61, 61, 61, 0.15); } + +modelbutton.flat arrow { + background: none; } + modelbutton.flat arrow:hover { + background: none; } + modelbutton.flat arrow.left { + -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); } + modelbutton.flat arrow.right { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + +button.color { + padding: 4px; } + button.color colorswatch:only-child { + box-shadow: 0 1px rgba(255, 255, 255, 0.769231); } + button.color colorswatch:only-child, button.color colorswatch:only-child overlay { + border-radius: 0; } + .osd button.color colorswatch:only-child { + box-shadow: none; } + .osd button.color:disabled colorswatch:only-child, .osd button.color:backdrop colorswatch:only-child, .osd button.color:active colorswatch:only-child, .osd button.color:checked colorswatch:only-child, button.color:disabled colorswatch:only-child, button.color:backdrop colorswatch:only-child, button.color:active colorswatch:only-child, button.color:checked colorswatch:only-child { + box-shadow: none; } + +/* list buttons */ +/* tone down as per new designs, see issue #1473, #1748 */ +list row button.image-button:not(.flat) { + border: 1px solid rgba(196, 196, 196, 0.5); } + list row button.image-button:not(.flat):hover { + color: #3D3D3D; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #c4c4c4; + border-bottom-color: #bababa; + text-shadow: 0 1px rgba(255, 255, 255, 0.769231); + -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); + box-shadow: inset 0 1px white, 0 1px 2px rgba(0, 0, 0, 0.07); + box-shadow: 0 1px rgba(0, 0, 0, 0.15); + background-image: image(white); } + list row button.image-button:not(.flat):active, list row button.image-button:not(.flat):checked { + color: #3D3D3D; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #c4c4c4; + background-image: image(lightgray); + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + text-shadow: none; + -gtk-icon-shadow: none; } + +/********* + * Links * + *********/ +button:link > label, +button:visited > label, button:link, +button:visited, +*:link { + color: #007aa6; } + button:link > label:visited, + button:visited > label:visited, + button:visited, + *:link:visited { + color: #002f40; } + *:selected button:link > label:visited, + *:selected button:visited > label:visited, + *:selected button:visited, *:selected *:link:visited { + color: #99acb3; } + button:link > label:hover, + button:visited > label:hover, button:hover:link, + button:hover:visited, + *:link:hover { + color: #009fd9; } + *:selected button:link > label:hover, + *:selected button:visited > label:hover, *:selected button:hover:link, + *:selected button:hover:visited, *:selected *:link:hover { + color: #e6f5fb; } + button:link > label:active, + button:visited > label:active, button:active:link, + button:active:visited, + *:link:active { + color: #007aa6; } + *:selected button:link > label:active, + *:selected button:visited > label:active, *:selected button:active:link, + *:selected button:active:visited, *:selected *:link:active { + color: #cce4ed; } + button:link > label:disabled, + button:visited > label:disabled, button:disabled:link, + button:disabled:visited, + *:link:disabled, + *:link:disabled:backdrop { + color: rgba(83, 83, 83, 0.8); } + button:link > label:backdrop, + button:visited > label:backdrop, button:backdrop:link, + button:backdrop:visited, + *:link:backdrop:backdrop:hover, + *:link:backdrop:backdrop:hover:selected, + *:link:backdrop { + color: rgba(0, 122, 166, 0.9); } + .selection-mode .titlebar:not(headerbar) .subtitle:link, .selection-mode.titlebar:not(headerbar) .subtitle:link, .selection-mode headerbar .subtitle:link, + headerbar.selection-mode .subtitle:link, button:link > label:selected, + button:visited > label:selected, button:selected:link, + button:selected:visited, *:selected button:link > label, + *:selected button:visited > label, *:selected button:link, + *:selected button:visited, + *:link:selected, *:selected *:link { + color: #cce4ed; } + +button:link, +button:visited { + text-shadow: none; } + button:link:hover, button:link:active, button:link:checked, + button:visited:hover, + button:visited:active, + button:visited:checked { + text-shadow: none; } + button:link > label, + button:visited > label { + text-decoration-line: underline; } + +/***************** + * GtkSpinButton * + *****************/ +spinbutton { + font-feature-settings: "tnum"; } + spinbutton:not(.vertical) { + padding: 0; } + .osd spinbutton:not(.vertical) entry, spinbutton:not(.vertical) entry { + min-width: 28px; + margin: 0; + background: none; + background-color: transparent; + border: none; + border-radius: 0; + box-shadow: none; } + spinbutton:not(.vertical) entry:backdrop:disabled { + background-color: transparent; } + spinbutton:not(.vertical) button { + min-height: 16px; + margin: 0; + padding-bottom: 0; + padding-top: 0; + color: #505050; + background-image: none; + border-style: none none none solid; + border-color: rgba(196, 196, 196, 0.3); + border-radius: 0; + box-shadow: none; } + spinbutton:not(.vertical) button:dir(rtl) { + border-style: none solid none none; } + spinbutton:not(.vertical) button:hover { + color: #3D3D3D; + background-color: rgba(61, 61, 61, 0.05); } + spinbutton:not(.vertical) button:disabled { + color: rgba(154, 154, 154, 0.3); + background-color: transparent; } + spinbutton:not(.vertical) button:active { + background-color: rgba(0, 0, 0, 0.1); + box-shadow: inset 0 2px 3px -1px rgba(0, 0, 0, 0.2); } + spinbutton:not(.vertical) button:backdrop { + color: #717171; + background-color: transparent; + border-color: rgba(206, 206, 206, 0.3); + transition: 200ms ease-out; } + spinbutton:not(.vertical) button:backdrop:disabled { + color: rgba(209, 209, 209, 0.3); + background-color: transparent; + background-image: none; + border-style: none none none solid; } + spinbutton:not(.vertical) button:backdrop:disabled:dir(rtl) { + border-style: none solid none none; } + spinbutton:not(.vertical) button:dir(ltr):last-child { + border-radius: 0 4px 4px 0; } + spinbutton:not(.vertical) button:dir(rtl):first-child { + border-radius: 4px 0 0 4px; } + .osd spinbutton:not(.vertical) button { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + text-shadow: none; + -gtk-icon-shadow: none; + color: #eeeeec; + border-style: none none none solid; + border-color: rgba(0, 0, 0, 0.4); + border-radius: 0; + box-shadow: none; + -gtk-icon-shadow: 0 1px black; } + .osd spinbutton:not(.vertical) button:dir(rtl) { + border-style: none solid none none; } + .osd spinbutton:not(.vertical) button:hover { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + text-shadow: none; + -gtk-icon-shadow: none; + color: #eeeeec; + border-color: rgba(0, 0, 0, 0.5); + background-color: rgba(238, 238, 236, 0.1); + -gtk-icon-shadow: 0 1px black; + box-shadow: none; } + .osd spinbutton:not(.vertical) button:backdrop { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + text-shadow: none; + -gtk-icon-shadow: none; + color: #eeeeec; + border-color: rgba(0, 0, 0, 0.5); + -gtk-icon-shadow: none; + box-shadow: none; } + .osd spinbutton:not(.vertical) button:disabled { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + text-shadow: none; + -gtk-icon-shadow: none; + color: #868685; + border-color: rgba(0, 0, 0, 0.5); + -gtk-icon-shadow: none; + box-shadow: none; } + .osd spinbutton:not(.vertical) button:dir(ltr):last-child { + border-radius: 0 4px 4px 0; } + .osd spinbutton:not(.vertical) button:dir(rtl):first-child { + border-radius: 4px 0 0 4px; } + spinbutton.vertical:disabled { + color: #9a9a9a; } + spinbutton.vertical:backdrop:disabled { + color: #d1d1d1; } + spinbutton.vertical:drop(active) { + border-color: transparent; + box-shadow: none; } + spinbutton.vertical entry { + min-height: 32px; + min-width: 32px; + padding: 0; + border-radius: 0; } + spinbutton.vertical button { + min-height: 32px; + min-width: 32px; + padding: 0; } + spinbutton.vertical button.up { + border-radius: 4px 4px 0 0; + border-style: solid solid none solid; } + spinbutton.vertical button.down { + border-radius: 0 0 4px 4px; + border-style: none solid solid solid; } + .osd spinbutton.vertical button:first-child { + color: #eeeeec; + border-color: rgba(0, 0, 0, 0.7); + background-color: transparent; + background-image: image(rgba(52, 52, 52, 0.975)); + background-clip: padding-box; + text-shadow: 0 1px black; + -gtk-icon-shadow: 0 1px black; + outline-color: rgba(238, 238, 236, 0.3); } + .osd spinbutton.vertical button:first-child:hover { + color: white; + border-color: rgba(0, 0, 0, 0.7); + background-color: transparent; + background-image: image(rgba(60, 60, 60, 0.975)); + background-clip: padding-box; + text-shadow: 0 1px black; + -gtk-icon-shadow: 0 1px black; + outline-color: rgba(238, 238, 236, 0.3); } + .osd spinbutton.vertical button:first-child:active { + color: white; + border-color: rgba(0, 0, 0, 0.7); + background-color: transparent; + background-image: image(rgba(0, 0, 0, 0.7)); + background-clip: padding-box; + box-shadow: none; + text-shadow: none; + -gtk-icon-shadow: none; + outline-color: rgba(238, 238, 236, 0.3); } + .osd spinbutton.vertical button:first-child:disabled { + color: #868685; + border-color: rgba(0, 0, 0, 0.7); + background-color: transparent; + background-image: image(rgba(50, 50, 50, 0.5)); + background-clip: padding-box; + box-shadow: none; + text-shadow: none; + -gtk-icon-shadow: none; } + .osd spinbutton.vertical button:first-child:backdrop { + color: #eeeeec; + border-color: rgba(0, 0, 0, 0.7); + background-color: transparent; + background-image: image(rgba(29, 29, 29, 0.975)); + background-clip: padding-box; + box-shadow: none; + text-shadow: none; + -gtk-icon-shadow: none; } + treeview spinbutton:not(.vertical) { + min-height: 0; + border-style: none; + border-radius: 0; } + treeview spinbutton:not(.vertical) entry { + min-height: 0; + padding: 1px 2px; } + +/************** + * ComboBoxes * + **************/ +combobox arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + min-height: 16px; + min-width: 16px; } + +combobox:drop(active) { + box-shadow: none; } + +/************ + * Toolbars * + ************/ +searchbar > revealer > box, +.location-bar, .inline-toolbar, toolbar { + -GtkWidget-window-dragging: true; + padding: 4px; + background-color: #F7F7F7; } + +toolbar { + padding: 4px 3px 3px 4px; } + .osd toolbar { + background-color: transparent; } + toolbar.osd { + padding: 13px; + border: none; + border-radius: 5px; + background-color: rgba(29, 29, 29, 0.975); } + toolbar.osd.left, toolbar.osd.right, toolbar.osd.top, toolbar.osd.bottom { + border-radius: 0; } + toolbar.horizontal separator { + margin: 0 7px 1px 6px; } + toolbar.vertical separator { + margin: 6px 1px 7px 0; } + toolbar:not(.inline-toolbar):not(.osd) > *:not(.toggle):not(.popup) > * { + margin-right: 1px; + margin-bottom: 1px; } + +.inline-toolbar { + padding: 3px; + border-width: 0 1px 1px; + border-radius: 0 0 5px 5px; } + +searchbar > revealer > box, +.location-bar { + border-width: 0 0 1px; + padding: 3px; } + +searchbar > revealer > box { + margin: -6px; + padding: 6px; } + +.inline-toolbar, searchbar > revealer > box, +.location-bar { + border-style: solid; + border-color: #c4c4c4; + background-color: #e8e8e8; } + .inline-toolbar:backdrop, searchbar > revealer > box:backdrop, + .location-bar:backdrop { + border-color: #cecece; + background-color: #e9e9e9; + box-shadow: none; + transition: 200ms ease-out; } + +/*************** + * Header bars * + ***************/ +.titlebar:not(headerbar), +headerbar { + padding: 0 6px; + min-height: 46px; + border-width: 0 0 1px; + border-style: solid; + border-color: #bababa; + border-radius: 0; + background: #dedede linear-gradient(to top, #dedede, #dedede); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.8); + /* Darken switchbuttons for headerbars. issue #1588 */ + /* hide the close button separator */ } + .titlebar:backdrop:not(headerbar), + headerbar:backdrop { + border-color: #cecece; + background-color: #F7F7F7; + background-image: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0.8); + transition: 200ms ease-out; } + .titlebar:not(headerbar) .title, + headerbar .title { + padding-left: 12px; + padding-right: 12px; + font-weight: bold; } + .titlebar:not(headerbar) .subtitle, + headerbar .subtitle { + font-size: smaller; + padding-left: 12px; + padding-right: 12px; } + .titlebar:not(headerbar) stackswitcher button:checked, + .titlebar:not(headerbar) button.toggle:checked, + headerbar stackswitcher button:checked, + headerbar button.toggle:checked { + background: image(#cccccc); + border-color: #b5b5b5; } + .titlebar:not(headerbar) stackswitcher button:checked:backdrop, + .titlebar:not(headerbar) button.toggle:checked:backdrop, + headerbar stackswitcher button:checked:backdrop, + headerbar button.toggle:checked:backdrop { + color: #626262; + border-color: #cecece; + background-image: image(#e4e4e4); + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + .selection-mode .titlebar:not(headerbar), .selection-mode.titlebar:not(headerbar), .selection-mode headerbar, + headerbar.selection-mode { + color: #FFFFFF; + border-color: #0e8420; + text-shadow: 0 -1px rgba(0, 0, 0, 0.5); + background: #109b26 linear-gradient(to top, #109b26, #109b26); + box-shadow: inset 0 1px rgba(112, 195, 125, 0.9); } + .selection-mode .titlebar:backdrop:not(headerbar), .selection-mode.titlebar:backdrop:not(headerbar), .selection-mode headerbar:backdrop, + headerbar.selection-mode:backdrop { + background-color: #109b26; + background-image: none; + box-shadow: inset 0 1px rgba(136, 205, 146, 0.88); } + .selection-mode .titlebar:backdrop:not(headerbar) label, .selection-mode.titlebar:backdrop:not(headerbar) label, .selection-mode headerbar:backdrop label, + headerbar.selection-mode:backdrop label { + text-shadow: none; + color: #FFFFFF; } + .selection-mode .titlebar:not(headerbar) button, .selection-mode.titlebar:not(headerbar) button, .selection-mode headerbar button, + headerbar.selection-mode button { + color: #FFFFFF; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #0c6d1a; + background-image: image(#11a428); + text-shadow: 0 -1px rgba(0, 0, 0, 0.73098); + -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.73098); + box-shadow: 0 1px rgba(0, 0, 0, 0.05); } + .selection-mode button.titlebutton, .selection-mode .titlebar:not(headerbar) button.flat, .selection-mode.titlebar:not(headerbar) button.flat, .selection-mode headerbar button.flat, + headerbar.selection-mode button.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + text-shadow: none; + -gtk-icon-shadow: none; } + .selection-mode .titlebar:not(headerbar) button:hover, .selection-mode.titlebar:not(headerbar) button:hover, .selection-mode headerbar button:hover, + headerbar.selection-mode button:hover { + color: #FFFFFF; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #0c6d1a; + border-bottom-color: #073f0f; + text-shadow: 0 -1px rgba(0, 0, 0, 0.68298); + -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.68298); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.02), 0 1px 2px rgba(0, 0, 0, 0.07); + box-shadow: 0 1px rgba(0, 0, 0, 0.15); + background-image: image(#12ad2a); } + .selection-mode .titlebar:not(headerbar) button:active, .selection-mode .titlebar:not(headerbar) button:checked, .selection-mode.titlebar:not(headerbar) button:active, .selection-mode.titlebar:not(headerbar) button:checked, .selection-mode headerbar button:active, .selection-mode headerbar button:checked, .selection-mode headerbar button.toggle:checked, .selection-mode headerbar button.toggle:active, + headerbar.selection-mode button:active, + headerbar.selection-mode button:checked, + headerbar.selection-mode button.toggle:checked, + headerbar.selection-mode button.toggle:active { + color: #FFFFFF; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #0c6d1a; + background-image: image(#0a5b16); + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + text-shadow: none; + -gtk-icon-shadow: none; } + .selection-mode .titlebar:not(headerbar) button:backdrop, .selection-mode.titlebar:not(headerbar) button:backdrop, .selection-mode headerbar button:backdrop.flat, .selection-mode headerbar button:backdrop, + headerbar.selection-mode button:backdrop.flat, + headerbar.selection-mode button:backdrop { + color: #cfebd4; + border-color: #109b26; + background-image: image(#109b26); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + -gtk-icon-effect: none; + border-color: #0e8420; } + .selection-mode .titlebar:not(headerbar) button:backdrop:active, .selection-mode .titlebar:not(headerbar) button:backdrop:checked, .selection-mode.titlebar:not(headerbar) button:backdrop:active, .selection-mode.titlebar:not(headerbar) button:backdrop:checked, .selection-mode headerbar button:backdrop.flat:active, .selection-mode headerbar button:backdrop.flat:checked, .selection-mode headerbar button:backdrop:active, .selection-mode headerbar button:backdrop:checked, + headerbar.selection-mode button:backdrop.flat:active, + headerbar.selection-mode button:backdrop.flat:checked, + headerbar.selection-mode button:backdrop:active, + headerbar.selection-mode button:backdrop:checked { + color: #d4e8d7; + border-color: #2a8b39; + background-image: image(#2a8b39); + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + border-color: #0e8420; } + .selection-mode .titlebar:not(headerbar) button:backdrop:disabled, .selection-mode.titlebar:not(headerbar) button:backdrop:disabled, .selection-mode headerbar button:backdrop.flat:disabled, .selection-mode headerbar button:backdrop:disabled, + headerbar.selection-mode button:backdrop.flat:disabled, + headerbar.selection-mode button:backdrop:disabled { + color: #7bc887; + border-color: #34aa46; + background-image: image(#34aa46); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + border-color: #0e8420; } + .selection-mode .titlebar:not(headerbar) button:backdrop:disabled:active, .selection-mode .titlebar:not(headerbar) button:backdrop:disabled:checked, .selection-mode.titlebar:not(headerbar) button:backdrop:disabled:active, .selection-mode.titlebar:not(headerbar) button:backdrop:disabled:checked, .selection-mode headerbar button:backdrop:disabled:active, .selection-mode headerbar button:backdrop:disabled:checked, + headerbar.selection-mode button:backdrop:disabled:active, + headerbar.selection-mode button:backdrop:disabled:checked { + color: #75b37e; + border-color: #2a8b39; + background-image: image(#2a8b39); + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + border-color: #0e8420; } + .selection-mode button.titlebutton:backdrop, .selection-mode button.titlebutton:disabled, .selection-mode .titlebar:not(headerbar) button.flat:backdrop, .selection-mode .titlebar:not(headerbar) button.flat:disabled, .selection-mode.titlebar:not(headerbar) button.flat:backdrop, .selection-mode.titlebar:not(headerbar) button.flat:disabled, .selection-mode headerbar button.flat:backdrop, .selection-mode headerbar button.flat:disabled, .selection-mode headerbar button.flat:backdrop:disabled, + headerbar.selection-mode button.flat:backdrop, + headerbar.selection-mode button.flat:disabled, + headerbar.selection-mode button.flat:backdrop:disabled { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + text-shadow: none; + -gtk-icon-shadow: none; } + .selection-mode .titlebar:not(headerbar) button:disabled, .selection-mode.titlebar:not(headerbar) button:disabled, .selection-mode headerbar button:disabled, + headerbar.selection-mode button:disabled { + color: #9ad5a3; + border-color: #0c6d1a; + background-image: image(#34aa46); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + .selection-mode .titlebar:not(headerbar) button:disabled:active, .selection-mode .titlebar:not(headerbar) button:disabled:checked, .selection-mode.titlebar:not(headerbar) button:disabled:active, .selection-mode.titlebar:not(headerbar) button:disabled:checked, .selection-mode headerbar button:disabled:active, .selection-mode headerbar button:disabled:checked, + headerbar.selection-mode button:disabled:active, + headerbar.selection-mode button:disabled:checked { + color: #aad1b0; + border-color: #0c6d1a; + background-image: image(#2a8b39); + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + .selection-mode .titlebar:not(headerbar) button.suggested-action, .selection-mode.titlebar:not(headerbar) button.suggested-action, .selection-mode headerbar button.suggested-action, + headerbar.selection-mode button.suggested-action { + color: #3D3D3D; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #c4c4c4; + background-image: image(#fcfcfc); + text-shadow: 0 1px rgba(255, 255, 255, 0.769231); + -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); + box-shadow: 0 1px rgba(0, 0, 0, 0.05); + border-color: #0e8420; } + .selection-mode .titlebar:not(headerbar) button.suggested-action:hover, .selection-mode.titlebar:not(headerbar) button.suggested-action:hover, .selection-mode headerbar button.suggested-action:hover, + headerbar.selection-mode button.suggested-action:hover { + color: #3D3D3D; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #c4c4c4; + border-bottom-color: #bababa; + text-shadow: 0 1px rgba(255, 255, 255, 0.769231); + -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); + box-shadow: inset 0 1px white, 0 1px 2px rgba(0, 0, 0, 0.07); + box-shadow: 0 1px rgba(0, 0, 0, 0.15); + background-image: image(white); + border-color: #0e8420; } + .selection-mode .titlebar:not(headerbar) button.suggested-action:active, .selection-mode.titlebar:not(headerbar) button.suggested-action:active, .selection-mode headerbar button.suggested-action:active, + headerbar.selection-mode button.suggested-action:active { + color: #3D3D3D; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #c4c4c4; + background-image: image(lightgray); + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + text-shadow: none; + -gtk-icon-shadow: none; + border-color: #0e8420; } + .selection-mode .titlebar:not(headerbar) button.suggested-action:disabled, .selection-mode.titlebar:not(headerbar) button.suggested-action:disabled, .selection-mode headerbar button.suggested-action:disabled, + headerbar.selection-mode button.suggested-action:disabled { + color: #9a9a9a; + border-color: #c4c4c4; + background-image: image(#fafafa); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + border-color: #0e8420; } + .selection-mode .titlebar:not(headerbar) button.suggested-action:backdrop, .selection-mode.titlebar:not(headerbar) button.suggested-action:backdrop, .selection-mode headerbar button.suggested-action:backdrop, + headerbar.selection-mode button.suggested-action:backdrop { + color: #626262; + border-color: #cecece; + background-image: image(#F7F7F7); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + border-color: #0e8420; } + .selection-mode .titlebar:not(headerbar) button.suggested-action:backdrop:disabled, .selection-mode.titlebar:not(headerbar) button.suggested-action:backdrop:disabled, .selection-mode headerbar button.suggested-action:backdrop:disabled, + headerbar.selection-mode button.suggested-action:backdrop:disabled { + color: #d1d1d1; + border-color: #cecece; + background-image: image(#fafafa); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + border-color: #0e8420; } + .selection-mode .titlebar:not(headerbar) .selection-menu, .selection-mode.titlebar:not(headerbar) .selection-menu, .selection-mode headerbar .selection-menu:backdrop, .selection-mode headerbar .selection-menu, + headerbar.selection-mode .selection-menu:backdrop, + headerbar.selection-mode .selection-menu { + border-color: rgba(16, 155, 38, 0); + background-color: rgba(16, 155, 38, 0); + background-image: none; + box-shadow: none; + min-height: 20px; + padding: 6px 10px; } + .selection-mode .titlebar:not(headerbar) .selection-menu arrow, .selection-mode.titlebar:not(headerbar) .selection-menu arrow, .selection-mode headerbar .selection-menu:backdrop arrow, .selection-mode headerbar .selection-menu arrow, + headerbar.selection-mode .selection-menu:backdrop arrow, + headerbar.selection-mode .selection-menu arrow { + -GtkArrow-arrow-scaling: 1; } + .selection-mode .titlebar:not(headerbar) .selection-menu .arrow, .selection-mode.titlebar:not(headerbar) .selection-menu .arrow, .selection-mode headerbar .selection-menu:backdrop .arrow, .selection-mode headerbar .selection-menu .arrow, + headerbar.selection-mode .selection-menu:backdrop .arrow, + headerbar.selection-mode .selection-menu .arrow { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); + color: rgba(255, 255, 255, 0.5); + -gtk-icon-shadow: none; } + .tiled .titlebar:not(headerbar), .tiled-top .titlebar:not(headerbar), .tiled-right .titlebar:not(headerbar), .tiled-bottom .titlebar:not(headerbar), .tiled-left .titlebar:not(headerbar), .maximized .titlebar:not(headerbar), .fullscreen .titlebar:not(headerbar), .tiled headerbar, .tiled-top headerbar, .tiled-right headerbar, .tiled-bottom headerbar, .tiled-left headerbar, .maximized headerbar, .fullscreen headerbar { + border-radius: 0; } + .default-decoration.titlebar:not(headerbar), + headerbar.default-decoration { + min-height: 28px; + padding: 4px; } + .default-decoration.titlebar:not(headerbar) button.titlebutton, + headerbar.default-decoration button.titlebutton { + min-height: 26px; + min-width: 26px; + margin: 0; + padding: 0; } + .titlebar:not(headerbar) separator.titlebutton, + headerbar separator.titlebutton { + opacity: 0; } + .solid-csd .titlebar:dir(rtl):not(headerbar), .solid-csd .titlebar:dir(ltr):not(headerbar), .solid-csd headerbar:backdrop:dir(rtl), .solid-csd headerbar:backdrop:dir(ltr), .solid-csd headerbar:dir(rtl), .solid-csd headerbar:dir(ltr) { + margin-left: -1px; + margin-right: -1px; + margin-top: -1px; + border-radius: 0; + box-shadow: none; } + +headerbar entry, +headerbar spinbutton, +headerbar separator:not(.sidebar), +headerbar button { + margin-top: 6px; + margin-bottom: 6px; } + +headerbar switch { + margin-top: 10px; + margin-bottom: 10px; } + +headerbar.titlebar headerbar:not(.titlebar) { + background: none; + box-shadow: none; } + +.background .titlebar:backdrop, .background .titlebar { + border-top-left-radius: 7px; + border-top-right-radius: 7px; } + +.background.tiled .titlebar:backdrop, .background.tiled .titlebar, +.background.tiled-top .titlebar:backdrop, +.background.tiled-top .titlebar, +.background.tiled-right .titlebar:backdrop, +.background.tiled-right .titlebar, +.background.tiled-bottom .titlebar:backdrop, +.background.tiled-bottom .titlebar, +.background.tiled-left .titlebar:backdrop, +.background.tiled-left .titlebar, +.background.maximized .titlebar:backdrop, +.background.maximized .titlebar, +.background.solid-csd .titlebar:backdrop, +.background.solid-csd .titlebar { + border-top-left-radius: 0; + border-top-right-radius: 0; } + +window separator:first-child + headerbar:backdrop, window separator:first-child + headerbar, window headerbar:first-child:backdrop, window headerbar:first-child { + border-top-left-radius: 7px; } + +window headerbar:last-child:backdrop, window headerbar:last-child { + border-top-right-radius: 7px; } + +window stack headerbar:first-child:backdrop, window stack headerbar:first-child, window stack headerbar:last-child:backdrop, window stack headerbar:last-child { + border-top-left-radius: 7px; + border-top-right-radius: 7px; } + +window.tiled headerbar, window.tiled headerbar:first-child, window.tiled headerbar:last-child, window.tiled headerbar:only-child, window.tiled headerbar:backdrop, window.tiled headerbar:backdrop:first-child, window.tiled headerbar:backdrop:last-child, window.tiled headerbar:backdrop:only-child, window.tiled-top headerbar, window.tiled-top headerbar:first-child, window.tiled-top headerbar:last-child, window.tiled-top headerbar:only-child, window.tiled-top headerbar:backdrop, window.tiled-top headerbar:backdrop:first-child, window.tiled-top headerbar:backdrop:last-child, window.tiled-top headerbar:backdrop:only-child, window.tiled-right headerbar, window.tiled-right headerbar:first-child, window.tiled-right headerbar:last-child, window.tiled-right headerbar:only-child, window.tiled-right headerbar:backdrop, window.tiled-right headerbar:backdrop:first-child, window.tiled-right headerbar:backdrop:last-child, window.tiled-right headerbar:backdrop:only-child, window.tiled-bottom headerbar, window.tiled-bottom headerbar:first-child, window.tiled-bottom headerbar:last-child, window.tiled-bottom headerbar:only-child, window.tiled-bottom headerbar:backdrop, window.tiled-bottom headerbar:backdrop:first-child, window.tiled-bottom headerbar:backdrop:last-child, window.tiled-bottom headerbar:backdrop:only-child, window.tiled-left headerbar, window.tiled-left headerbar:first-child, window.tiled-left headerbar:last-child, window.tiled-left headerbar:only-child, window.tiled-left headerbar:backdrop, window.tiled-left headerbar:backdrop:first-child, window.tiled-left headerbar:backdrop:last-child, window.tiled-left headerbar:backdrop:only-child, window.maximized headerbar, window.maximized headerbar:first-child, window.maximized headerbar:last-child, window.maximized headerbar:only-child, window.maximized headerbar:backdrop, window.maximized headerbar:backdrop:first-child, window.maximized headerbar:backdrop:last-child, window.maximized headerbar:backdrop:only-child, window.fullscreen headerbar, window.fullscreen headerbar:first-child, window.fullscreen headerbar:last-child, window.fullscreen headerbar:only-child, window.fullscreen headerbar:backdrop, window.fullscreen headerbar:backdrop:first-child, window.fullscreen headerbar:backdrop:last-child, window.fullscreen headerbar:backdrop:only-child, window.solid-csd headerbar, window.solid-csd headerbar:first-child, window.solid-csd headerbar:last-child, window.solid-csd headerbar:only-child, window.solid-csd headerbar:backdrop, window.solid-csd headerbar:backdrop:first-child, window.solid-csd headerbar:backdrop:last-child, window.solid-csd headerbar:backdrop:only-child { + border-top-left-radius: 0; + border-top-right-radius: 0; } + +window.csd > .titlebar:not(headerbar) { + padding: 0; + background-color: transparent; + background-image: none; + border-style: none; + border-color: transparent; + box-shadow: none; } + +.titlebar:not(headerbar) separator { + background-color: #c4c4c4; } + +window.devel headerbar.titlebar:not(.selection-mode) { + background: #F7F7F7 cross-fade(10% -gtk-icontheme("system-run-symbolic"), image(transparent)) 90% 0/256px 256px no-repeat, linear-gradient(to right, transparent 65%, rgba(233, 84, 32, 0.2)), linear-gradient(to top, #d6d6d6, #dedede 3px, #ededed); } + window.devel headerbar.titlebar:not(.selection-mode):backdrop { + background: #F7F7F7 cross-fade(10% -gtk-icontheme("system-run-symbolic"), image(transparent)) 90% 0/256px 256px no-repeat, image(#F7F7F7); + /* background-color would flash */ } + +/************ + * Pathbars * + ************/ +.path-bar button.text-button, .path-bar button.image-button, .path-bar button { + padding-left: 4px; + padding-right: 4px; } + +.path-bar button.text-button.image-button label { + padding-left: 0; + padding-right: 0; } + +.path-bar button.text-button.image-button label:last-child, .path-bar button label:last-child { + padding-right: 8px; } + +.path-bar button.text-button.image-button label:first-child, .path-bar button label:first-child { + padding-left: 8px; } + +.path-bar button image { + padding-left: 4px; + padding-right: 4px; } + +.path-bar button.slider-button { + padding-left: 0; + padding-right: 0; } + +/************** + * Tree Views * + **************/ +treeview.view { + border-left-color: #9e9e9e; + border-top-color: #F7F7F7; } + * { + -GtkTreeView-horizontal-separator: 4; + -GtkTreeView-grid-line-width: 1; + -GtkTreeView-grid-line-pattern: ''; + -GtkTreeView-tree-line-width: 1; + -GtkTreeView-tree-line-pattern: ''; + -GtkTreeView-expander-size: 16; } + treeview.view:selected:focus, treeview.view:selected { + border-radius: 0; } + treeview.view:selected:backdrop, treeview.view:selected { + border-left-color: #f4aa90; + border-top-color: rgba(61, 61, 61, 0.1); } + treeview.view:disabled { + color: #9a9a9a; } + treeview.view:disabled:selected { + color: #f29879; } + treeview.view:disabled:selected:backdrop { + color: #ef8762; } + treeview.view:disabled:backdrop { + color: #d1d1d1; } + treeview.view.separator { + min-height: 2px; + color: #F7F7F7; } + treeview.view.separator:backdrop { + color: rgba(247, 247, 247, 0.1); } + treeview.view:backdrop { + border-left-color: #adadad; + border-top: #F7F7F7; } + treeview.view:drop(active) { + border-style: solid none; + border-width: 1px; + border-color: #ac3911; } + treeview.view:drop(active).after { + border-top-style: none; } + treeview.view:drop(active).before { + border-bottom-style: none; } + treeview.view.expander { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + color: #4d4d4d; } + treeview.view.expander:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + treeview.view.expander:hover { + color: black; } + treeview.view.expander:selected { + color: #f8ccbc; } + treeview.view.expander:selected:hover { + color: #FFFFFF; } + treeview.view.expander:selected:backdrop { + color: #f7caba; } + treeview.view.expander:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + treeview.view.expander:backdrop { + color: #909090; } + treeview.view.progressbar { + color: #ffffff; + background-color: #e95420; + background-image: image(#e95420); + box-shadow: none; } + treeview.view.progressbar:selected:focus, treeview.view.progressbar:selected { + color: #e95420; + background-image: image(#ffffff); } + treeview.view.progressbar:selected:focus:backdrop, treeview.view.progressbar:selected:backdrop { + color: #e95420; + background-color: #fcfcfc; } + treeview.view.progressbar:backdrop { + color: #fcfcfc; + background-image: none; + box-shadow: none; } + treeview.view.trough { + background-color: rgba(61, 61, 61, 0.1); } + treeview.view.trough:selected:focus, treeview.view.trough:selected { + background-color: rgba(255, 255, 255, 0.3); } + treeview.view header button { + color: #9e9e9e; + background-color: #ffffff; + font-weight: bold; + text-shadow: none; + box-shadow: none; } + treeview.view header button:hover { + color: #6e6e6e; + box-shadow: none; + transition: none; } + treeview.view header button:active { + color: #3D3D3D; + transition: none; } + treeview.view button.dnd:active, treeview.view button.dnd:selected, treeview.view button.dnd:hover, treeview.view button.dnd, + treeview.view header.button.dnd:active, + treeview.view header.button.dnd:selected, + treeview.view header.button.dnd:hover, + treeview.view header.button.dnd { + padding: 0 6px; + color: #ffffff; + background-image: none; + background-color: #e95420; + border-style: none; + border-radius: 0; + box-shadow: inset 0 0 0 1px #ffffff; + text-shadow: none; + transition: none; } + treeview.view acceleditor > label { + background-color: #e95420; } + +treeview.view header button, treeview.view header button:hover, treeview.view header button:active { + padding: 0 6px; + background-image: none; + border-style: none solid solid none; + border-color: #F7F7F7; + border-radius: 0; + text-shadow: none; } + treeview.view header button:disabled { + border-color: #F7F7F7; + background-image: none; } + treeview.view header button:backdrop { + color: #adadad; + border-color: #F7F7F7; + border-style: none solid solid none; + background-image: none; + background-color: #fcfcfc; } + treeview.view header button:backdrop:disabled { + border-color: #F7F7F7; + background-image: none; } + treeview.view header button:last-child { + border-right-style: none; } + +/********* + * Menus * + *********/ +menubar, +.menubar { + -GtkWidget-window-dragging: true; + padding: 0px; + box-shadow: inset 0 -1px rgba(0, 0, 0, 0.1); } + menubar:backdrop, + .menubar:backdrop { + background-color: #F7F7F7; } + menubar > menuitem, + .menubar > menuitem { + min-height: 16px; + padding: 4px 8px; } + menubar > menuitem menu:dir(rtl), menubar > menuitem menu:dir(ltr), + .menubar > menuitem menu:dir(rtl), + .menubar > menuitem menu:dir(ltr) { + border-radius: 0; + padding: 0; } + menubar > menuitem:hover, + .menubar > menuitem:hover { + box-shadow: inset 0 -3px #e95420; + color: #007aa6; } + menubar > menuitem:disabled, + .menubar > menuitem:disabled { + color: #9a9a9a; + box-shadow: none; } + menubar .csd.popup decoration, + .menubar .csd.popup decoration { + border-radius: 0; } + +.background.popup { + background-color: transparent; } + +menu, +.menu, +.context-menu { + margin: 4px; + padding: 4px 0px; + background-color: #FAFAFA; + border: 1px solid #c4c4c4; } + .csd menu, .csd .menu, .csd .context-menu { + border: none; + border-radius: 4px; } + menu:backdrop, + .menu:backdrop, + .context-menu:backdrop { + background-color: #fcfcfc; } + menu menuitem, + .menu menuitem, + .context-menu menuitem { + min-height: 16px; + min-width: 40px; + padding: 4px 6px; + text-shadow: none; } + menu menuitem:hover, + .menu menuitem:hover, + .context-menu menuitem:hover { + color: #FFFFFF; + background-color: #e95420; } + menu menuitem:disabled, + .menu menuitem:disabled, + .context-menu menuitem:disabled { + color: #9a9a9a; } + menu menuitem:disabled:backdrop, + .menu menuitem:disabled:backdrop, + .context-menu menuitem:disabled:backdrop { + color: #d1d1d1; } + menu menuitem:backdrop, menu menuitem:backdrop:hover, + .menu menuitem:backdrop, + .menu menuitem:backdrop:hover, + .context-menu menuitem:backdrop, + .context-menu menuitem:backdrop:hover { + color: #626262; + background-color: transparent; } + menu menuitem arrow, + .menu menuitem arrow, + .context-menu menuitem arrow { + min-height: 16px; + min-width: 16px; } + menu menuitem arrow:dir(ltr), + .menu menuitem arrow:dir(ltr), + .context-menu menuitem arrow:dir(ltr) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); + margin-left: 10px; } + menu menuitem arrow:dir(rtl), + .menu menuitem arrow:dir(rtl), + .context-menu menuitem arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); + margin-right: 10px; } + menu menuitem label:dir(rtl), menu menuitem label:dir(ltr), + .menu menuitem label:dir(rtl), + .menu menuitem label:dir(ltr), + .context-menu menuitem label:dir(rtl), + .context-menu menuitem label:dir(ltr) { + color: inherit; } + menu > arrow, + .menu > arrow, + .context-menu > arrow { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + text-shadow: none; + -gtk-icon-shadow: none; + min-height: 16px; + min-width: 16px; + padding: 4px; + background-color: #FAFAFA; + border-radius: 0; } + menu > arrow.top, + .menu > arrow.top, + .context-menu > arrow.top { + margin-top: -4px; + border-bottom: 1px solid #ececec; + border-top-right-radius: 4px; + border-top-left-radius: 4px; + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); } + menu > arrow.bottom, + .menu > arrow.bottom, + .context-menu > arrow.bottom { + margin-top: 8px; + margin-bottom: -12px; + border-top: 1px solid #ececec; + border-bottom-right-radius: 4px; + border-bottom-left-radius: 4px; + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + menu > arrow:hover, + .menu > arrow:hover, + .context-menu > arrow:hover { + background-color: #ececec; } + menu > arrow:backdrop, + .menu > arrow:backdrop, + .context-menu > arrow:backdrop { + background-color: #fcfcfc; } + menu > arrow:disabled, + .menu > arrow:disabled, + .context-menu > arrow:disabled { + color: transparent; + background-color: transparent; + border-color: transparent; } + +menuitem accelerator { + color: alpha(currentColor,0.55); } + +menuitem check, +menuitem radio { + min-height: 16px; + min-width: 16px; } + menuitem check:dir(ltr), + menuitem radio:dir(ltr) { + margin-right: 7px; } + menuitem check:dir(rtl), + menuitem radio:dir(rtl) { + margin-left: 7px; } + +/*************** + * Popovers * + ***************/ +popover.background { + padding: 2px; + background-color: #FAFAFA; + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); } + .csd popover.background, popover.background { + border: 1px solid #c4c4c4; + border-radius: 6px; } + .csd popover.background { + background-clip: padding-box; + border-color: rgba(0, 0, 0, 0.23); } + popover.background:backdrop { + background-color: #F7F7F7; + box-shadow: none; } + popover.background > list, + popover.background > .view, + popover.background > iconview, + popover.background > toolbar { + border-style: none; + background-color: transparent; } + .csd popover.background.touch-selection, .csd popover.background.magnifier, popover.background.touch-selection, popover.background.magnifier { + border: 1px solid rgba(255, 255, 255, 0.1); } + popover.background separator { + margin: 3px; } + popover.background list separator { + margin: 0px; } + +/************* + * Notebooks * + *************/ +notebook > header { + padding: 1px; + border-color: #c4c4c4; + border-width: 1px; + background-color: #dedede; } + notebook > header:backdrop { + border-color: #cecece; + background-color: #e9e9e9; } + notebook > header tabs { + margin: -1px; } + notebook > header.top { + border-bottom-style: solid; } + notebook > header.top > tabs { + margin-bottom: -2px; } + notebook > header.top > tabs > tab:hover { + box-shadow: inset 0 -3px #c4c4c4; } + notebook > header.top > tabs > tab:backdrop { + box-shadow: none; } + notebook > header.top > tabs > tab:checked { + box-shadow: inset 0 -3px #e95420; } + notebook > header.bottom { + border-top-style: solid; } + notebook > header.bottom > tabs { + margin-top: -2px; } + notebook > header.bottom > tabs > tab:hover { + box-shadow: inset 0 3px #c4c4c4; } + notebook > header.bottom > tabs > tab:backdrop { + box-shadow: none; } + notebook > header.bottom > tabs > tab:checked { + box-shadow: inset 0 3px #e95420; } + notebook > header.left { + border-right-style: solid; } + notebook > header.left > tabs { + margin-right: -2px; } + notebook > header.left > tabs > tab:hover { + box-shadow: inset -3px 0 #c4c4c4; } + notebook > header.left > tabs > tab:backdrop { + box-shadow: none; } + notebook > header.left > tabs > tab:checked { + box-shadow: inset -3px 0 #e95420; } + notebook > header.right { + border-left-style: solid; } + notebook > header.right > tabs { + margin-left: -2px; } + notebook > header.right > tabs > tab:hover { + box-shadow: inset 3px 0 #c4c4c4; } + notebook > header.right > tabs > tab:backdrop { + box-shadow: none; } + notebook > header.right > tabs > tab:checked { + box-shadow: inset 3px 0 #e95420; } + notebook > header.top > tabs > arrow { + border-top-style: none; } + notebook > header.bottom > tabs > arrow { + border-bottom-style: none; } + notebook > header.top > tabs > arrow, notebook > header.bottom > tabs > arrow { + margin-left: -5px; + margin-right: -5px; + padding-left: 4px; + padding-right: 4px; } + notebook > header.top > tabs > arrow.down, notebook > header.bottom > tabs > arrow.down { + -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); } + notebook > header.top > tabs > arrow.up, notebook > header.bottom > tabs > arrow.up { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + notebook > header.left > tabs > arrow { + border-left-style: none; } + notebook > header.right > tabs > arrow { + border-right-style: none; } + notebook > header.left > tabs > arrow, notebook > header.right > tabs > arrow { + margin-top: -5px; + margin-bottom: -5px; + padding-top: 4px; + padding-bottom: 4px; } + notebook > header.left > tabs > arrow.down, notebook > header.right > tabs > arrow.down { + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); } + notebook > header.left > tabs > arrow.up, notebook > header.right > tabs > arrow.up { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + notebook > header > tabs > arrow { + min-height: 16px; + min-width: 16px; + border-radius: 0; } + notebook > header > tabs > arrow:hover:not(:active):not(:backdrop) { + background-clip: padding-box; + background-image: none; + background-color: rgba(255, 255, 255, 0.3); + border-color: transparent; + box-shadow: none; } + notebook > header > tabs > arrow:disabled { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + text-shadow: none; + -gtk-icon-shadow: none; } + notebook > header tab { + min-height: 30px; + min-width: 30px; + padding: 3px 12px; + outline-offset: -5px; + color: #3D3D3D; + font-weight: normal; + border-width: 1px; + border-color: transparent; } + notebook > header tab:hover { + color: #3D3D3D; + background-color: #ededed; } + notebook > header tab:hover.reorderable-page { + border-color: rgba(196, 196, 196, 0.3); + background-color: rgba(247, 247, 247, 0.2); } + notebook > header tab:backdrop { + color: #9e9e9e; } + notebook > header tab:backdrop.reorderable-page { + border-color: transparent; + background-color: transparent; } + notebook > header tab:checked { + color: #3D3D3D; } + notebook > header tab:checked.reorderable-page { + border-color: rgba(196, 196, 196, 0.5); + background-color: rgba(247, 247, 247, 0.5); } + notebook > header tab:checked.reorderable-page:hover { + background-color: rgba(247, 247, 247, 0.7); } + notebook > header tab:backdrop:checked { + color: #626262; } + notebook > header tab:backdrop:checked.reorderable-page { + border-color: #cecece; + background-color: #F7F7F7; } + notebook > header tab button.flat { + padding: 0; + margin-top: 4px; + margin-bottom: 4px; + min-width: 20px; + min-height: 20px; } + notebook > header tab button.flat:hover { + color: currentColor; } + notebook > header tab button.flat, notebook > header tab button.flat:backdrop { + color: alpha(currentColor,0.3); } + notebook > header tab button.flat:last-child { + margin-left: 4px; + margin-right: -4px; } + notebook > header tab button.flat:first-child { + margin-left: -4px; + margin-right: 4px; } + notebook > header.top tabs, notebook > header.bottom tabs { + padding-left: 4px; + padding-right: 4px; } + notebook > header.top tabs:not(:only-child), notebook > header.bottom tabs:not(:only-child) { + margin-left: 3px; + margin-right: 3px; } + notebook > header.top tabs:not(:only-child):first-child, notebook > header.bottom tabs:not(:only-child):first-child { + margin-left: -1px; } + notebook > header.top tabs:not(:only-child):last-child, notebook > header.bottom tabs:not(:only-child):last-child { + margin-right: -1px; } + notebook > header.top tabs tab, notebook > header.bottom tabs tab { + margin-left: 4px; + margin-right: 4px; } + notebook > header.top tabs tab.reorderable-page, notebook > header.bottom tabs tab.reorderable-page { + border-style: none solid; } + notebook > header.left tabs, notebook > header.right tabs { + padding-top: 4px; + padding-bottom: 4px; } + notebook > header.left tabs:not(:only-child), notebook > header.right tabs:not(:only-child) { + margin-top: 3px; + margin-bottom: 3px; } + notebook > header.left tabs:not(:only-child):first-child, notebook > header.right tabs:not(:only-child):first-child { + margin-top: -1px; } + notebook > header.left tabs:not(:only-child):last-child, notebook > header.right tabs:not(:only-child):last-child { + margin-bottom: -1px; } + notebook > header.left tabs tab, notebook > header.right tabs tab { + margin-top: 4px; + margin-bottom: 4px; } + notebook > header.left tabs tab.reorderable-page, notebook > header.right tabs tab.reorderable-page { + border-style: solid none; } + notebook > header.top tab { + padding-bottom: 4px; } + notebook > header.bottom tab { + padding-top: 4px; } + +notebook > stack:not(:only-child) { + background-color: #ffffff; } + notebook > stack:not(:only-child):backdrop { + background-color: #fcfcfc; } + +/************** + * Scrollbars * + **************/ +scrollbar { + background-color: #d2d2d2; + transition: 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + * { + -GtkScrollbar-has-backward-stepper: false; + -GtkScrollbar-has-forward-stepper: false; } + scrollbar.top { + border-bottom: 1px solid #c4c4c4; } + scrollbar.bottom { + border-top: 1px solid #c4c4c4; } + scrollbar.left { + border-right: 1px solid #c4c4c4; } + scrollbar.right { + border-left: 1px solid #c4c4c4; } + scrollbar:backdrop { + background-color: #efefef; + border-color: #cecece; + transition: 200ms ease-out; } + scrollbar slider { + min-width: 6px; + min-height: 6px; + margin: -1px; + border: 4px solid transparent; + border-radius: 8px; + background-clip: padding-box; + background-color: #8bbdf0; } + scrollbar slider:hover { + background-color: #001f9c; } + scrollbar slider:hover:active { + background-color: #c34113; } + scrollbar slider:backdrop { + background-color: #bbbbbb; } + scrollbar slider:disabled { + background-color: transparent; } + scrollbar.fine-tune slider { + min-width: 4px; + min-height: 4px; } + scrollbar.fine-tune.horizontal slider { + border-width: 5px 4px; } + scrollbar.fine-tune.vertical slider { + border-width: 4px 5px; } + scrollbar.overlay-indicator:not(.dragging):not(.hovering) { + border-color: transparent; + opacity: 0.4; + background-color: transparent; } + scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider { + margin: 0; + min-width: 3px; + min-height: 3px; + background-color: #3D3D3D; + border: 1px solid white; } + scrollbar.overlay-indicator:not(.dragging):not(.hovering) button { + min-width: 5px; + min-height: 5px; + background-color: #3D3D3D; + background-clip: padding-box; + border-radius: 100%; + border: 1px solid white; + -gtk-icon-source: none; } + scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal slider { + margin: 0 2px; + min-width: 40px; } + scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal button { + margin: 1px 2px; + min-width: 5px; } + scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical slider { + margin: 2px 0; + min-height: 40px; } + scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical button { + margin: 2px 1px; + min-height: 5px; } + scrollbar.overlay-indicator.dragging, scrollbar.overlay-indicator.hovering { + opacity: 0.8; } + scrollbar.horizontal slider { + min-width: 40px; } + scrollbar.vertical slider { + min-height: 40px; } + scrollbar button { + padding: 0; + min-width: 12px; + min-height: 12px; + border-style: none; + border-radius: 0; + transition-property: min-height, min-width, color; + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + text-shadow: none; + -gtk-icon-shadow: none; + color: #878787; } + scrollbar button:hover { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + text-shadow: none; + -gtk-icon-shadow: none; + color: #626262; } + scrollbar button:active, scrollbar button:checked { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + text-shadow: none; + -gtk-icon-shadow: none; + color: #c34113; } + scrollbar button:disabled { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + text-shadow: none; + -gtk-icon-shadow: none; + color: rgba(135, 135, 135, 0.2); } + scrollbar button:backdrop { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + text-shadow: none; + -gtk-icon-shadow: none; + color: #bbbbbb; } + scrollbar button:backdrop:disabled { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + text-shadow: none; + -gtk-icon-shadow: none; + color: rgba(187, 187, 187, 0.2); } + scrollbar.vertical button.down { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + scrollbar.vertical button.up { + -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); } + scrollbar.horizontal button.down { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + scrollbar.horizontal button.up { + -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); } + +treeview ~ scrollbar.vertical { + border-top: 1px solid #c4c4c4; + margin-top: -1px; } + +/********** + * Switch * + **********/ +switch { + outline-offset: -4px; + border: 1px solid #c4c4c4; + border-radius: 14px; + color: #3D3D3D; + background-color: #dedede; + text-shadow: 0 1px rgba(0, 0, 0, 0.1); + /* only show i / o for the accessible theme */ } + switch:checked { + color: #FFFFFF; + border-color: #94310f; + background-color: #e95420; + text-shadow: 0 1px rgba(172, 57, 17, 0.5), 0 0 2px rgba(255, 255, 255, 0.6); } + switch:disabled { + color: #9a9a9a; + border-color: #c4c4c4; + background-color: #fafafa; + text-shadow: none; } + switch:backdrop { + color: #626262; + border-color: #cecece; + background-color: #e9e9e9; + text-shadow: none; + transition: 200ms ease-out; } + switch:backdrop:checked { + color: #F7F7F7; + border-color: #94310f; + background-color: #e95420; } + switch:backdrop:disabled { + color: #d1d1d1; + border-color: #cecece; + background-color: #fafafa; } + switch slider { + margin: -1px; + min-width: 24px; + min-height: 24px; + border: 1px solid; + border-radius: 50%; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-outline-radius: 20px; + color: #3D3D3D; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #bababa; + text-shadow: 0 1px rgba(255, 255, 255, 0.769231); + -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); + background-image: linear-gradient(to bottom, white 20%, #F7F7F7 90%); + box-shadow: inset 0 1px white, 0 1px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.07); + box-shadow: 0 1px rgba(0, 0, 0, 0.05); + background-image: image(white); } + switch image { + color: transparent; } + switch:hover slider { + color: #3D3D3D; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #bababa; + box-shadow: inset 0 1px white, 0 1px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.07); + background-image: image(white); + box-shadow: 0 1px rgba(0, 0, 0, 0.15); } + switch:checked > slider { + border: 1px solid #94310f; } + switch:disabled slider { + color: #9a9a9a; + border-color: #c4c4c4; + background-image: image(#fafafa); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + switch:backdrop slider { + transition: 200ms ease-out; + color: #626262; + border-color: #cecece; + background-image: image(#F7F7F7); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + switch:backdrop:checked > slider { + border-color: #94310f; } + switch:backdrop:disabled slider { + color: #d1d1d1; + border-color: #cecece; + background-image: image(#fafafa); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + row:selected switch { + box-shadow: none; + border-color: #94310f; } + row:selected switch:backdrop { + border-color: #94310f; } + row:selected switch > slider:checked, row:selected switch > slider { + border-color: #94310f; } + +/************************* + * Check and Radio items * + *************************/ +.view.content-view.check:not(list), iconview.content-view.check:not(list), +.content-view:not(list) check { + margin: 4px; + min-width: 32px; + min-height: 32px; + color: transparent; + background-color: #e95420; + border-radius: 5px; + background-image: none; + transition: 200ms; + box-shadow: none; + border-width: 0; + -gtk-icon-source: none; + -gtk-icon-shadow: none; } + +.view.content-view.check:hover:not(list), iconview.content-view.check:hover:not(list), +.content-view:not(list) check:hover { + margin: 4px; + min-width: 32px; + min-height: 32px; + color: transparent; + background-color: #e95420; + border-radius: 5px; + background-image: none; + transition: 200ms; + box-shadow: none; + border-width: 0; + -gtk-icon-source: none; + -gtk-icon-shadow: none; } + +.view.content-view.check:active:not(list), iconview.content-view.check:active:not(list), +.content-view:not(list) check:active { + margin: 4px; + min-width: 32px; + min-height: 32px; + color: transparent; + background-color: #e95420; + border-radius: 5px; + background-image: none; + transition: 200ms; + box-shadow: none; + border-width: 0; + -gtk-icon-source: none; + -gtk-icon-shadow: none; } + +.view.content-view.check:backdrop:not(list), iconview.content-view.check:backdrop:not(list), +.content-view:not(list) check:backdrop { + margin: 4px; + min-width: 32px; + min-height: 32px; + color: transparent; + background-color: #858585; + border-radius: 5px; + background-image: none; + transition: 200ms; + box-shadow: none; + border-width: 0; + -gtk-icon-source: none; + -gtk-icon-shadow: none; } + +.view.content-view.check:checked:not(list), iconview.content-view.check:checked:not(list), +.content-view:not(list) check:checked { + margin: 4px; + min-width: 32px; + min-height: 32px; + color: #eeeeec; + background-color: #e95420; + border-radius: 5px; + background-image: none; + transition: 200ms; + box-shadow: none; + border-width: 0; + -gtk-icon-source: -gtk-icontheme('object-select-symbolic'); + -gtk-icon-shadow: none; } + +.view.content-view.check:checked:hover:not(list), iconview.content-view.check:checked:hover:not(list), +.content-view:not(list) check:checked:hover { + margin: 4px; + min-width: 32px; + min-height: 32px; + color: #eeeeec; + background-color: #e95420; + border-radius: 5px; + background-image: none; + transition: 200ms; + box-shadow: none; + border-width: 0; + -gtk-icon-source: -gtk-icontheme('object-select-symbolic'); + -gtk-icon-shadow: none; } + +.view.content-view.check:checked:active:not(list), iconview.content-view.check:checked:active:not(list), +.content-view:not(list) check:checked:active { + margin: 4px; + min-width: 32px; + min-height: 32px; + color: #eeeeec; + background-color: #e95420; + border-radius: 5px; + background-image: none; + transition: 200ms; + box-shadow: none; + border-width: 0; + -gtk-icon-source: -gtk-icontheme('object-select-symbolic'); + -gtk-icon-shadow: none; } + +.view.content-view.check:backdrop:checked:not(list), iconview.content-view.check:backdrop:checked:not(list), +.content-view:not(list) check:backdrop:checked { + margin: 4px; + min-width: 32px; + min-height: 32px; + color: rgba(238, 238, 236, 0.8); + background-color: #858585; + border-radius: 5px; + background-image: none; + transition: 200ms; + box-shadow: none; + border-width: 0; + -gtk-icon-source: -gtk-icontheme('object-select-symbolic'); + -gtk-icon-shadow: none; } + +checkbutton.text-button, radiobutton.text-button { + padding: 2px 0; + outline-offset: 0; } + checkbutton.text-button label:not(:only-child):first-child, radiobutton.text-button label:not(:only-child):first-child { + margin-left: 4px; } + checkbutton.text-button label:not(:only-child):last-child, radiobutton.text-button label:not(:only-child):last-child { + margin-right: 4px; } + +check, +radio { + margin: 0 4px; + min-height: 14px; + min-width: 14px; + border: 1px solid; + -gtk-icon-source: none; } + check:only-child, + radio:only-child { + margin: 0; } + popover check.left:dir(rtl), popover radio.left:dir(rtl) { + margin-left: 0; + margin-right: 12px; } + popover check.right:dir(ltr), popover radio.right:dir(ltr) { + margin-left: 12px; + margin-right: 0; } + check, + radio { + background-clip: padding-box; + background-image: image(white); + border-color: #bababa; + box-shadow: 0 1px rgba(0, 0, 0, 0.05); + color: #3D3D3D; } + check:hover, + radio:hover { + background-image: image(whitesmoke); + border-color: #bababa; } + check:active, + radio:active { + border-color: #bababa; + background-image: image(#bababa); + box-shadow: none; } + check:disabled, + radio:disabled { + box-shadow: none; + color: #9a9a9a; + border-color: #c4c4c4; + background-image: image(#fafafa); } + check:backdrop, + radio:backdrop { + background-image: image(white); + border-color: #bababa; + box-shadow: none; + color: #3D3D3D; } + check:backdrop:disabled, + radio:backdrop:disabled { + box-shadow: none; + color: #626262; + border-color: #c4c4c4; + background-image: image(#fafafa); } + check:checked, + radio:checked { + background-clip: border-box; + background-image: image(#e95420); + border-color: #e95420; + box-shadow: 0 1px rgba(0, 0, 0, 0.05); + color: #FFFFFF; } + check:checked:hover, + radio:checked:hover { + background-image: image(#ec6d40); + border-color: #ec6d40; } + check:checked:active, + radio:checked:active { + border-color: #d14515; + background-image: image(#d14515); + box-shadow: none; } + check:checked:disabled, + radio:checked:disabled { + box-shadow: none; + color: #9a9a9a; + border-color: #c4c4c4; + background-image: image(#fafafa); } + check:checked:backdrop, + radio:checked:backdrop { + background-image: image(#e95420); + border-color: #e95420; + box-shadow: none; + color: #FFFFFF; } + check:checked:backdrop:disabled, + radio:checked:backdrop:disabled { + box-shadow: none; + color: #626262; + border-color: #c4c4c4; + background-image: image(#fafafa); } + check:indeterminate, + radio:indeterminate { + background-clip: border-box; + background-image: image(#e95420); + border-color: #e95420; + box-shadow: 0 1px rgba(0, 0, 0, 0.05); + color: #FFFFFF; } + check:indeterminate:hover, + radio:indeterminate:hover { + background-image: image(#ec6d40); + border-color: #ec6d40; } + check:indeterminate:active, + radio:indeterminate:active { + border-color: #d14515; + background-image: image(#d14515); + box-shadow: none; } + check:indeterminate:disabled, + radio:indeterminate:disabled { + box-shadow: none; + color: #9a9a9a; + border-color: #c4c4c4; + background-image: image(#fafafa); } + check:indeterminate:backdrop, + radio:indeterminate:backdrop { + background-image: image(#e95420); + border-color: #e95420; + box-shadow: none; + color: #FFFFFF; } + check:indeterminate:backdrop:disabled, + radio:indeterminate:backdrop:disabled { + box-shadow: none; + color: #626262; + border-color: #c4c4c4; + background-image: image(#fafafa); } + check:backdrop, + radio:backdrop { + transition: 200ms ease-out; } + row:selected check, row:selected radio { + border-color: #94310f; } + .osd check, .osd radio { + color: #eeeeec; + border-color: rgba(0, 0, 0, 0.7); + background-color: transparent; + background-image: image(rgba(52, 52, 52, 0.975)); + background-clip: padding-box; + text-shadow: 0 1px black; + -gtk-icon-shadow: 0 1px black; + outline-color: rgba(238, 238, 236, 0.3); } + .osd check:hover, .osd radio:hover { + color: #eeeeec; + border-color: rgba(0, 0, 0, 0.7); + background-color: transparent; + background-image: image(rgba(52, 52, 52, 0.975)); + background-clip: padding-box; + text-shadow: 0 1px black; + -gtk-icon-shadow: 0 1px black; + outline-color: rgba(238, 238, 236, 0.3); } + .osd check:active, .osd radio:active { + color: white; + border-color: rgba(0, 0, 0, 0.7); + background-color: transparent; + background-image: image(rgba(0, 0, 0, 0.7)); + background-clip: padding-box; + box-shadow: none; + text-shadow: none; + -gtk-icon-shadow: none; + outline-color: rgba(238, 238, 236, 0.3); } + .osd check:backdrop, .osd radio:backdrop { + color: #eeeeec; + border-color: rgba(0, 0, 0, 0.7); + background-color: transparent; + background-image: image(rgba(29, 29, 29, 0.975)); + background-clip: padding-box; + box-shadow: none; + text-shadow: none; + -gtk-icon-shadow: none; } + .osd check:disabled, .osd radio:disabled { + color: #868685; + border-color: rgba(0, 0, 0, 0.7); + background-color: transparent; + background-image: image(rgba(50, 50, 50, 0.5)); + background-clip: padding-box; + box-shadow: none; + text-shadow: none; + -gtk-icon-shadow: none; } + menu menuitem check, menu menuitem radio { + margin: 0; } + menu menuitem check, menu menuitem check:hover, menu menuitem check:disabled, menu menuitem check:checked, menu menuitem check:checked:hover, menu menuitem check:checked:disabled, menu menuitem check:indeterminate, menu menuitem check:indeterminate:hover, menu menuitem check:indeterminate:disabled, menu menuitem radio, menu menuitem radio:hover, menu menuitem radio:disabled, menu menuitem radio:checked, menu menuitem radio:checked:hover, menu menuitem radio:checked:disabled, menu menuitem radio:indeterminate, menu menuitem radio:indeterminate:hover, menu menuitem radio:indeterminate:disabled { + min-height: 14px; + min-width: 14px; + background-image: none; + background-color: transparent; + box-shadow: none; + -gtk-icon-shadow: none; + color: inherit; + border-color: currentColor; } + + +check { + border-radius: 3px; } + + check:checked { + -gtk-icon-source: image(-gtk-recolor(url("assets/check-symbolic.svg")), -gtk-recolor(url("assets/check-symbolic.symbolic.png"))); } + + check:indeterminate { + -gtk-icon-source: image(-gtk-recolor(url("assets/dash-symbolic.svg")), -gtk-recolor(url("assets/dash-symbolic.symbolic.png"))); } + +treeview.view radio:selected:focus, treeview.view radio:selected, +radio { + border-radius: 100%; } + treeview.view radio:checked:selected, + radio:checked { + -gtk-icon-source: image(-gtk-recolor(url("assets/bullet-symbolic.svg")), -gtk-recolor(url("assets/bullet-symbolic.symbolic.png"))); } + treeview.view radio:indeterminate:selected, + radio:indeterminate { + -gtk-icon-source: image(-gtk-recolor(url("assets/dash-symbolic.svg")), -gtk-recolor(url("assets/dash-symbolic.symbolic.png"))); } + +radio:not(:indeterminate):not(:checked):active:not(:backdrop) { + -gtk-icon-transform: scale(0); } + +check:not(:indeterminate):not(:checked):active:not(:backdrop) { + -gtk-icon-transform: translate(6px, -3px) rotate(-45deg) scaleY(0.2) rotate(45deg) scaleX(0); } + +radio:active, +check:active { + -gtk-icon-transform: scale(0, 1); } + +radio:checked:not(:backdrop), radio:indeterminate:not(:backdrop), +check:checked:not(:backdrop), +check:indeterminate:not(:backdrop) { + -gtk-icon-transform: unset; + transition: 400ms; } + +menu menuitem radio:checked:not(:backdrop), menu menuitem radio:indeterminate:not(:backdrop), +menu menuitem check:checked:not(:backdrop), +menu menuitem check:indeterminate:not(:backdrop) { + transition: none; } + +treeview.view check:selected:focus, treeview.view check:selected, +treeview.view radio:selected:focus, +treeview.view radio:selected { + color: #FFFFFF; + border-color: #ac3911; } + +/************ + * GtkScale * + ************/ +progressbar trough, scale fill, scale trough { + border: 1px solid #c4c4c4; + border-radius: 3px; + background-color: #dedede; } + progressbar trough:disabled, scale fill:disabled, scale trough:disabled { + background-color: #fafafa; } + progressbar trough:backdrop, scale fill:backdrop, scale trough:backdrop { + background-color: #e9e9e9; + border-color: #cecece; + transition: 200ms ease-out; } + progressbar trough:backdrop:disabled, scale fill:backdrop:disabled, scale trough:backdrop:disabled { + background-color: #fafafa; } + row:selected progressbar trough, progressbar row:selected trough, row:selected scale fill, scale row:selected fill, row:selected scale trough, scale row:selected trough { + border-color: #ac3911; } + .osd progressbar trough, progressbar .osd trough, .osd scale fill, scale .osd fill, .osd scale trough, scale .osd trough { + border-color: rgba(0, 0, 0, 0.7); + background-color: rgba(0, 0, 0, 0.5); } + .osd progressbar trough:disabled, progressbar .osd trough:disabled, .osd scale fill:disabled, scale .osd fill:disabled, .osd scale trough:disabled, scale .osd trough:disabled { + background-color: rgba(50, 50, 50, 0.5); } + +progressbar progress, scale highlight { + border: 1px solid #da4816; + border-radius: 3px; + background-color: #e95420; } + progressbar progress:disabled, scale highlight:disabled { + background-color: transparent; + border-color: transparent; } + progressbar progress:backdrop, scale highlight:backdrop { + border-color: #e95420; } + progressbar progress:backdrop:disabled, scale highlight:backdrop:disabled { + background-color: transparent; + border-color: transparent; } + row:selected progressbar progress, progressbar row:selected progress, row:selected scale highlight, scale row:selected highlight { + border-color: #ac3911; } + .osd progressbar progress, progressbar .osd progress, .osd scale highlight, scale .osd highlight { + border-color: rgba(0, 0, 0, 0.7); } + .osd progressbar progress:disabled, progressbar .osd progress:disabled, .osd scale highlight:disabled, scale .osd highlight:disabled { + border-color: transparent; } + +scale { + min-height: 10px; + min-width: 10px; + padding: 12px; } + scale fill, + scale highlight { + margin: -1px; } + scale slider { + min-height: 18px; + min-width: 18px; + margin: -9px; } + scale.fine-tune.horizontal { + padding-top: 9px; + padding-bottom: 9px; + min-height: 16px; } + scale.fine-tune.vertical { + padding-left: 9px; + padding-right: 9px; + min-width: 16px; } + scale.fine-tune slider { + margin: -6px; } + scale.fine-tune fill, + scale.fine-tune highlight, + scale.fine-tune trough { + border-radius: 5px; + -gtk-outline-radius: 7px; } + scale trough { + outline-offset: 2px; + -gtk-outline-radius: 5px; } + scale fill:backdrop, scale fill { + background-color: #c4c4c4; } + scale fill:disabled:backdrop, scale fill:disabled { + border-color: transparent; + background-color: transparent; } + .osd scale fill { + background-color: rgba(91, 91, 90, 0.775); } + .osd scale fill:disabled:backdrop, .osd scale fill:disabled { + border-color: transparent; + background-color: transparent; } + scale slider { + color: #3D3D3D; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #bababa; + text-shadow: 0 1px rgba(255, 255, 255, 0.769231); + -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); + background-image: linear-gradient(to bottom, white 20%, #F7F7F7 90%); + box-shadow: inset 0 1px white, 0 1px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.07); + box-shadow: 0 1px rgba(0, 0, 0, 0.05); + background-image: image(white); + border: 1px solid #b2b2b2; + border-radius: 100%; + transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + transition-property: background, border, box-shadow; } + scale slider:hover { + color: #3D3D3D; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #bababa; + box-shadow: inset 0 1px white, 0 1px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.07); + background-image: image(white); + box-shadow: 0 1px rgba(0, 0, 0, 0.15); } + scale slider:active { + border-color: #da4816; } + scale slider:disabled { + color: #9a9a9a; + border-color: #c4c4c4; + background-image: image(#fafafa); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + scale slider:backdrop { + transition: 200ms ease-out; + color: #626262; + border-color: #cecece; + background-image: image(#F7F7F7); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + scale slider:backdrop:disabled { + color: #d1d1d1; + border-color: #cecece; + background-image: image(#fafafa); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + row:selected scale slider:disabled, row:selected scale slider { + border-color: #ac3911; } + .osd scale slider { + color: #eeeeec; + border-color: rgba(0, 0, 0, 0.7); + background-color: transparent; + background-image: image(rgba(52, 52, 52, 0.975)); + background-clip: padding-box; + text-shadow: 0 1px black; + -gtk-icon-shadow: 0 1px black; + outline-color: rgba(238, 238, 236, 0.3); + border-color: rgba(0, 0, 0, 0.7); + background-color: #1d1d1d; } + .osd scale slider:hover { + color: white; + border-color: rgba(0, 0, 0, 0.7); + background-color: transparent; + background-image: image(rgba(60, 60, 60, 0.975)); + background-clip: padding-box; + text-shadow: 0 1px black; + -gtk-icon-shadow: 0 1px black; + outline-color: rgba(238, 238, 236, 0.3); + background-color: #1d1d1d; } + .osd scale slider:active { + color: white; + border-color: rgba(0, 0, 0, 0.7); + background-color: transparent; + background-image: image(rgba(0, 0, 0, 0.7)); + background-clip: padding-box; + box-shadow: none; + text-shadow: none; + -gtk-icon-shadow: none; + outline-color: rgba(238, 238, 236, 0.3); + background-color: #1d1d1d; } + .osd scale slider:disabled { + color: #868685; + border-color: rgba(0, 0, 0, 0.7); + background-color: transparent; + background-image: image(rgba(50, 50, 50, 0.5)); + background-clip: padding-box; + box-shadow: none; + text-shadow: none; + -gtk-icon-shadow: none; + background-color: #1d1d1d; } + .osd scale slider:backdrop { + color: #eeeeec; + border-color: rgba(0, 0, 0, 0.7); + background-color: transparent; + background-image: image(rgba(29, 29, 29, 0.975)); + background-clip: padding-box; + box-shadow: none; + text-shadow: none; + -gtk-icon-shadow: none; + background-color: #1d1d1d; } + .osd scale slider:backdrop:disabled { + background-color: #1d1d1d; } + scale marks, + scale value { + color: alpha(currentColor,0.55); + font-feature-settings: "tnum"; } + scale.horizontal marks.top { + margin-bottom: 6px; + margin-top: -12px; } + scale.horizontal.fine-tune marks.top { + margin-bottom: 6px; + margin-top: -9px; } + scale.horizontal marks.bottom { + margin-top: 6px; + margin-bottom: -12px; } + scale.horizontal.fine-tune marks.bottom { + margin-top: 6px; + margin-bottom: -9px; } + scale.vertical marks.top { + margin-right: 6px; + margin-left: -12px; } + scale.vertical.fine-tune marks.top { + margin-right: 6px; + margin-left: -9px; } + scale.vertical marks.bottom { + margin-left: 6px; + margin-right: -12px; } + scale.vertical.fine-tune marks.bottom { + margin-left: 6px; + margin-right: -9px; } + scale.horizontal indicator { + min-height: 6px; + min-width: 1px; } + scale.horizontal.fine-tune indicator { + min-height: 3px; } + scale.vertical indicator { + min-height: 1px; + min-width: 6px; } + scale.vertical.fine-tune indicator { + min-width: 3px; } + scale.horizontal.marks-before:not(.marks-after) slider { + margin: -10px; + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-horz-scale-has-marks-above.png"), url("assets/slider-horz-scale-has-marks-above@2.png")); + min-height: 26px; + min-width: 22px; + margin-top: -14px; + background-position: top; + background-repeat: no-repeat; + box-shadow: none; } + scale.horizontal.marks-before:not(.marks-after).fine-tune slider { + margin: -7px; + margin-top: -11px; } + scale.horizontal.marks-before:not(.marks-after) slider:hover { + margin: -10px; + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-horz-scale-has-marks-above-hover.png"), url("assets/slider-horz-scale-has-marks-above-hover@2.png")); + min-height: 26px; + min-width: 22px; + margin-top: -14px; + background-position: top; + background-repeat: no-repeat; + box-shadow: none; } + scale.horizontal.marks-before:not(.marks-after).fine-tune slider { + margin: -7px; + margin-top: -11px; } + scale.horizontal.marks-before:not(.marks-after) slider:active { + margin: -10px; + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-horz-scale-has-marks-above-active.png"), url("assets/slider-horz-scale-has-marks-above-active@2.png")); + min-height: 26px; + min-width: 22px; + margin-top: -14px; + background-position: top; + background-repeat: no-repeat; + box-shadow: none; } + scale.horizontal.marks-before:not(.marks-after).fine-tune slider { + margin: -7px; + margin-top: -11px; } + scale.horizontal.marks-before:not(.marks-after) slider:disabled { + margin: -10px; + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-horz-scale-has-marks-above-insensitive.png"), url("assets/slider-horz-scale-has-marks-above-insensitive@2.png")); + min-height: 26px; + min-width: 22px; + margin-top: -14px; + background-position: top; + background-repeat: no-repeat; + box-shadow: none; } + scale.horizontal.marks-before:not(.marks-after).fine-tune slider { + margin: -7px; + margin-top: -11px; } + scale.horizontal.marks-before:not(.marks-after) slider:backdrop { + margin: -10px; + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-horz-scale-has-marks-above-backdrop.png"), url("assets/slider-horz-scale-has-marks-above-backdrop@2.png")); + min-height: 26px; + min-width: 22px; + margin-top: -14px; + background-position: top; + background-repeat: no-repeat; + box-shadow: none; } + scale.horizontal.marks-before:not(.marks-after).fine-tune slider { + margin: -7px; + margin-top: -11px; } + scale.horizontal.marks-before:not(.marks-after) slider:backdrop:disabled { + margin: -10px; + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-horz-scale-has-marks-above-backdrop-insensitive.png"), url("assets/slider-horz-scale-has-marks-above-backdrop-insensitive@2.png")); + min-height: 26px; + min-width: 22px; + margin-top: -14px; + background-position: top; + background-repeat: no-repeat; + box-shadow: none; } + scale.horizontal.marks-before:not(.marks-after).fine-tune slider { + margin: -7px; + margin-top: -11px; } + scale.horizontal.marks-after:not(.marks-before) slider { + margin: -10px; + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-horz-scale-has-marks-below.png"), url("assets/slider-horz-scale-has-marks-below@2.png")); + min-height: 26px; + min-width: 22px; + margin-bottom: -14px; + background-position: bottom; + background-repeat: no-repeat; + box-shadow: none; } + scale.horizontal.marks-after:not(.marks-before).fine-tune slider { + margin: -7px; + margin-bottom: -11px; } + scale.horizontal.marks-after:not(.marks-before) slider:hover { + margin: -10px; + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-horz-scale-has-marks-below-hover.png"), url("assets/slider-horz-scale-has-marks-below-hover@2.png")); + min-height: 26px; + min-width: 22px; + margin-bottom: -14px; + background-position: bottom; + background-repeat: no-repeat; + box-shadow: none; } + scale.horizontal.marks-after:not(.marks-before).fine-tune slider { + margin: -7px; + margin-bottom: -11px; } + scale.horizontal.marks-after:not(.marks-before) slider:active { + margin: -10px; + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-horz-scale-has-marks-below-active.png"), url("assets/slider-horz-scale-has-marks-below-active@2.png")); + min-height: 26px; + min-width: 22px; + margin-bottom: -14px; + background-position: bottom; + background-repeat: no-repeat; + box-shadow: none; } + scale.horizontal.marks-after:not(.marks-before).fine-tune slider { + margin: -7px; + margin-bottom: -11px; } + scale.horizontal.marks-after:not(.marks-before) slider:disabled { + margin: -10px; + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-horz-scale-has-marks-below-insensitive.png"), url("assets/slider-horz-scale-has-marks-below-insensitive@2.png")); + min-height: 26px; + min-width: 22px; + margin-bottom: -14px; + background-position: bottom; + background-repeat: no-repeat; + box-shadow: none; } + scale.horizontal.marks-after:not(.marks-before).fine-tune slider { + margin: -7px; + margin-bottom: -11px; } + scale.horizontal.marks-after:not(.marks-before) slider:backdrop { + margin: -10px; + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-horz-scale-has-marks-below-backdrop.png"), url("assets/slider-horz-scale-has-marks-below-backdrop@2.png")); + min-height: 26px; + min-width: 22px; + margin-bottom: -14px; + background-position: bottom; + background-repeat: no-repeat; + box-shadow: none; } + scale.horizontal.marks-after:not(.marks-before).fine-tune slider { + margin: -7px; + margin-bottom: -11px; } + scale.horizontal.marks-after:not(.marks-before) slider:backdrop:disabled { + margin: -10px; + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-horz-scale-has-marks-below-backdrop-insensitive.png"), url("assets/slider-horz-scale-has-marks-below-backdrop-insensitive@2.png")); + min-height: 26px; + min-width: 22px; + margin-bottom: -14px; + background-position: bottom; + background-repeat: no-repeat; + box-shadow: none; } + scale.horizontal.marks-after:not(.marks-before).fine-tune slider { + margin: -7px; + margin-bottom: -11px; } + scale.vertical.marks-before:not(.marks-after) slider { + margin: -10px; + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-vert-scale-has-marks-above.png"), url("assets/slider-vert-scale-has-marks-above@2.png")); + min-height: 22px; + min-width: 26px; + margin-left: -14px; + background-position: left bottom; + background-repeat: no-repeat; + box-shadow: none; } + scale.vertical.marks-before:not(.marks-after).fine-tune slider { + margin: -7px; + margin-left: -11px; } + scale.vertical.marks-before:not(.marks-after) slider:hover { + margin: -10px; + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-vert-scale-has-marks-above-hover.png"), url("assets/slider-vert-scale-has-marks-above-hover@2.png")); + min-height: 22px; + min-width: 26px; + margin-left: -14px; + background-position: left bottom; + background-repeat: no-repeat; + box-shadow: none; } + scale.vertical.marks-before:not(.marks-after).fine-tune slider { + margin: -7px; + margin-left: -11px; } + scale.vertical.marks-before:not(.marks-after) slider:active { + margin: -10px; + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-vert-scale-has-marks-above-active.png"), url("assets/slider-vert-scale-has-marks-above-active@2.png")); + min-height: 22px; + min-width: 26px; + margin-left: -14px; + background-position: left bottom; + background-repeat: no-repeat; + box-shadow: none; } + scale.vertical.marks-before:not(.marks-after).fine-tune slider { + margin: -7px; + margin-left: -11px; } + scale.vertical.marks-before:not(.marks-after) slider:disabled { + margin: -10px; + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-vert-scale-has-marks-above-insensitive.png"), url("assets/slider-vert-scale-has-marks-above-insensitive@2.png")); + min-height: 22px; + min-width: 26px; + margin-left: -14px; + background-position: left bottom; + background-repeat: no-repeat; + box-shadow: none; } + scale.vertical.marks-before:not(.marks-after).fine-tune slider { + margin: -7px; + margin-left: -11px; } + scale.vertical.marks-before:not(.marks-after) slider:backdrop { + margin: -10px; + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-vert-scale-has-marks-above-backdrop.png"), url("assets/slider-vert-scale-has-marks-above-backdrop@2.png")); + min-height: 22px; + min-width: 26px; + margin-left: -14px; + background-position: left bottom; + background-repeat: no-repeat; + box-shadow: none; } + scale.vertical.marks-before:not(.marks-after).fine-tune slider { + margin: -7px; + margin-left: -11px; } + scale.vertical.marks-before:not(.marks-after) slider:backdrop:disabled { + margin: -10px; + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-vert-scale-has-marks-above-backdrop-insensitive.png"), url("assets/slider-vert-scale-has-marks-above-backdrop-insensitive@2.png")); + min-height: 22px; + min-width: 26px; + margin-left: -14px; + background-position: left bottom; + background-repeat: no-repeat; + box-shadow: none; } + scale.vertical.marks-before:not(.marks-after).fine-tune slider { + margin: -7px; + margin-left: -11px; } + scale.vertical.marks-after:not(.marks-before) slider { + margin: -10px; + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-vert-scale-has-marks-below.png"), url("assets/slider-vert-scale-has-marks-below@2.png")); + min-height: 22px; + min-width: 26px; + margin-right: -14px; + background-position: right bottom; + background-repeat: no-repeat; + box-shadow: none; } + scale.vertical.marks-after:not(.marks-before).fine-tune slider { + margin: -7px; + margin-right: -11px; } + scale.vertical.marks-after:not(.marks-before) slider:hover { + margin: -10px; + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-vert-scale-has-marks-below-hover.png"), url("assets/slider-vert-scale-has-marks-below-hover@2.png")); + min-height: 22px; + min-width: 26px; + margin-right: -14px; + background-position: right bottom; + background-repeat: no-repeat; + box-shadow: none; } + scale.vertical.marks-after:not(.marks-before).fine-tune slider { + margin: -7px; + margin-right: -11px; } + scale.vertical.marks-after:not(.marks-before) slider:active { + margin: -10px; + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-vert-scale-has-marks-below-active.png"), url("assets/slider-vert-scale-has-marks-below-active@2.png")); + min-height: 22px; + min-width: 26px; + margin-right: -14px; + background-position: right bottom; + background-repeat: no-repeat; + box-shadow: none; } + scale.vertical.marks-after:not(.marks-before).fine-tune slider { + margin: -7px; + margin-right: -11px; } + scale.vertical.marks-after:not(.marks-before) slider:disabled { + margin: -10px; + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-vert-scale-has-marks-below-insensitive.png"), url("assets/slider-vert-scale-has-marks-below-insensitive@2.png")); + min-height: 22px; + min-width: 26px; + margin-right: -14px; + background-position: right bottom; + background-repeat: no-repeat; + box-shadow: none; } + scale.vertical.marks-after:not(.marks-before).fine-tune slider { + margin: -7px; + margin-right: -11px; } + scale.vertical.marks-after:not(.marks-before) slider:backdrop { + margin: -10px; + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-vert-scale-has-marks-below-backdrop.png"), url("assets/slider-vert-scale-has-marks-below-backdrop@2.png")); + min-height: 22px; + min-width: 26px; + margin-right: -14px; + background-position: right bottom; + background-repeat: no-repeat; + box-shadow: none; } + scale.vertical.marks-after:not(.marks-before).fine-tune slider { + margin: -7px; + margin-right: -11px; } + scale.vertical.marks-after:not(.marks-before) slider:backdrop:disabled { + margin: -10px; + border-style: none; + border-radius: 0; + background-color: transparent; + background-image: -gtk-scaled(url("assets/slider-vert-scale-has-marks-below-backdrop-insensitive.png"), url("assets/slider-vert-scale-has-marks-below-backdrop-insensitive@2.png")); + min-height: 22px; + min-width: 26px; + margin-right: -14px; + background-position: right bottom; + background-repeat: no-repeat; + box-shadow: none; } + scale.vertical.marks-after:not(.marks-before).fine-tune slider { + margin: -7px; + margin-right: -11px; } + scale.color { + min-height: 0; + min-width: 0; } + scale.color trough { + background-image: image(#c4c4c4); + background-repeat: no-repeat; } + scale.color.horizontal { + padding: 0 0 15px 0; } + scale.color.horizontal trough { + padding-bottom: 4px; + background-position: 0 -3px; + border-top-left-radius: 0; + border-top-right-radius: 0; } + scale.color.horizontal slider:dir(ltr):hover, scale.color.horizontal slider:dir(ltr):backdrop, scale.color.horizontal slider:dir(ltr):disabled, scale.color.horizontal slider:dir(ltr):backdrop:disabled, scale.color.horizontal slider:dir(ltr), scale.color.horizontal slider:dir(rtl):hover, scale.color.horizontal slider:dir(rtl):backdrop, scale.color.horizontal slider:dir(rtl):disabled, scale.color.horizontal slider:dir(rtl):backdrop:disabled, scale.color.horizontal slider:dir(rtl) { + margin-bottom: -15px; + margin-top: 6px; } + scale.color.vertical:dir(ltr) { + padding: 0 0 0 15px; } + scale.color.vertical:dir(ltr) trough { + padding-left: 4px; + background-position: 3px 0; + border-bottom-right-radius: 0; + border-top-right-radius: 0; } + scale.color.vertical:dir(ltr) slider:hover, scale.color.vertical:dir(ltr) slider:backdrop, scale.color.vertical:dir(ltr) slider:disabled, scale.color.vertical:dir(ltr) slider:backdrop:disabled, scale.color.vertical:dir(ltr) slider { + margin-left: -15px; + margin-right: 6px; } + scale.color.vertical:dir(rtl) { + padding: 0 15px 0 0; } + scale.color.vertical:dir(rtl) trough { + padding-right: 4px; + background-position: -3px 0; + border-bottom-left-radius: 0; + border-top-left-radius: 0; } + scale.color.vertical:dir(rtl) slider:hover, scale.color.vertical:dir(rtl) slider:backdrop, scale.color.vertical:dir(rtl) slider:disabled, scale.color.vertical:dir(rtl) slider:backdrop:disabled, scale.color.vertical:dir(rtl) slider { + margin-right: -15px; + margin-left: 6px; } + scale.color.fine-tune.horizontal:dir(ltr), scale.color.fine-tune.horizontal:dir(rtl) { + padding: 0 0 12px 0; } + scale.color.fine-tune.horizontal:dir(ltr) trough, scale.color.fine-tune.horizontal:dir(rtl) trough { + padding-bottom: 7px; + background-position: 0 -6px; } + scale.color.fine-tune.horizontal:dir(ltr) slider, scale.color.fine-tune.horizontal:dir(rtl) slider { + margin-bottom: -15px; + margin-top: 6px; } + scale.color.fine-tune.vertical:dir(ltr) { + padding: 0 0 0 12px; } + scale.color.fine-tune.vertical:dir(ltr) trough { + padding-left: 7px; + background-position: 6px 0; } + scale.color.fine-tune.vertical:dir(ltr) slider { + margin-left: -15px; + margin-right: 6px; } + scale.color.fine-tune.vertical:dir(rtl) { + padding: 0 12px 0 0; } + scale.color.fine-tune.vertical:dir(rtl) trough { + padding-right: 7px; + background-position: -6px 0; } + scale.color.fine-tune.vertical:dir(rtl) slider { + margin-right: -15px; + margin-left: 6px; } + +/***************** + * Progress bars * + *****************/ +progressbar { + font-size: smaller; + color: rgba(61, 61, 61, 0.4); + font-feature-settings: "tnum"; } + progressbar.horizontal trough, + progressbar.horizontal progress { + min-height: 2px; } + progressbar.vertical trough, + progressbar.vertical progress { + min-width: 2px; } + progressbar.horizontal progress { + margin: 0 -1px; } + progressbar.vertical progress { + margin: -1px 0; } + progressbar:backdrop { + box-shadow: none; + transition: 200ms ease-out; } + progressbar progress { + border-radius: 1.5px; } + progressbar progress.left { + border-top-left-radius: 2px; + border-bottom-left-radius: 2px; } + progressbar progress.right { + border-top-right-radius: 2px; + border-bottom-right-radius: 2px; } + progressbar progress.top { + border-top-right-radius: 2px; + border-top-left-radius: 2px; } + progressbar progress.bottom { + border-bottom-right-radius: 2px; + border-bottom-left-radius: 2px; } + progressbar.osd { + min-width: 3px; + min-height: 3px; + background-color: transparent; } + progressbar.osd trough { + border-style: none; + border-radius: 0; + background-color: transparent; + box-shadow: none; } + progressbar.osd progress { + border-style: none; + border-radius: 0; } + progressbar trough.empty progress { + all: unset; } + +/************* + * Level Bar * + *************/ +levelbar.horizontal block { + min-height: 1px; } + +levelbar.horizontal.discrete block { + margin: 0 1px; + min-width: 32px; } + +levelbar.vertical block { + min-width: 1px; } + +levelbar.vertical.discrete block { + margin: 1px 0; + min-height: 32px; } + +levelbar:backdrop { + transition: 200ms ease-out; } + +levelbar trough { + border: 1px solid; + padding: 2px; + border-radius: 3px; + color: black; + border-color: #c4c4c4; + background-color: #ffffff; + box-shadow: inset 0 0 0 1px rgba(239, 134, 97, 0); } + levelbar trough:backdrop { + color: #323232; + border-color: #cecece; + background-color: #fcfcfc; + box-shadow: none; } + +levelbar block { + border: 1px solid; + border-radius: 1px; } + levelbar block.low { + border-color: #a06104; + background-color: #f99b11; } + levelbar block.low:backdrop { + border-color: #f99b11; } + levelbar block.high, levelbar block:not(.empty) { + border-color: #94310f; + background-color: #e95420; } + levelbar block.high:backdrop, levelbar block:not(.empty):backdrop { + border-color: #e95420; } + levelbar block.full { + border-color: #073f0f; + background-color: #109b26; } + levelbar block.full:backdrop { + border-color: #109b26; } + levelbar block.empty { + background-color: transparent; + border-color: rgba(61, 61, 61, 0.2); } + levelbar block.empty:backdrop { + border-color: rgba(98, 98, 98, 0.15); } + +/**************** + * Print dialog * +*****************/ +printdialog paper { + color: #3D3D3D; + border: 1px solid #c4c4c4; + background: white; + padding: 0; } + printdialog paper:backdrop { + color: #626262; + border-color: #cecece; } + +printdialog .dialog-action-box { + margin: 12px; } + +/********** + * Frames * + **********/ +frame > border, +.frame { + box-shadow: none; + margin: 0; + padding: 0; + border-radius: 0; + border: 1px solid #c4c4c4; } + frame > border.flat, + .frame.flat { + border-style: none; } + frame > border:backdrop, + .frame:backdrop { + border-color: #cecece; } + +actionbar > revealer > box { + padding: 6px; + border-top: 1px solid #c4c4c4; } + actionbar > revealer > box:backdrop { + border-color: #cecece; } + +scrolledwindow viewport.frame { + border-style: none; } + +scrolledwindow overshoot.top { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.5, to(#ababab), to(rgba(171, 171, 171, 0))), -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(61, 61, 61, 0.07)), to(rgba(61, 61, 61, 0))); + background-size: 100% 5%, 100% 100%; + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; } + scrolledwindow overshoot.top:backdrop { + background-image: -gtk-gradient(radial, center top, 0, center top, 0.5, to(#cecece), to(rgba(206, 206, 206, 0))); + background-size: 100% 5%; + background-repeat: no-repeat; + background-position: center top; + background-color: transparent; + border: none; + box-shadow: none; } + +scrolledwindow overshoot.bottom { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.5, to(#ababab), to(rgba(171, 171, 171, 0))), -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(rgba(61, 61, 61, 0.07)), to(rgba(61, 61, 61, 0))); + background-size: 100% 5%, 100% 100%; + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; } + scrolledwindow overshoot.bottom:backdrop { + background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.5, to(#cecece), to(rgba(206, 206, 206, 0))); + background-size: 100% 5%; + background-repeat: no-repeat; + background-position: center bottom; + background-color: transparent; + border: none; + box-shadow: none; } + +scrolledwindow overshoot.left { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.5, to(#ababab), to(rgba(171, 171, 171, 0))), -gtk-gradient(radial, left center, 0, left center, 0.6, from(rgba(61, 61, 61, 0.07)), to(rgba(61, 61, 61, 0))); + background-size: 5% 100%, 100% 100%; + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; } + scrolledwindow overshoot.left:backdrop { + background-image: -gtk-gradient(radial, left center, 0, left center, 0.5, to(#cecece), to(rgba(206, 206, 206, 0))); + background-size: 5% 100%; + background-repeat: no-repeat; + background-position: left center; + background-color: transparent; + border: none; + box-shadow: none; } + +scrolledwindow overshoot.right { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.5, to(#ababab), to(rgba(171, 171, 171, 0))), -gtk-gradient(radial, right center, 0, right center, 0.6, from(rgba(61, 61, 61, 0.07)), to(rgba(61, 61, 61, 0))); + background-size: 5% 100%, 100% 100%; + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; } + scrolledwindow overshoot.right:backdrop { + background-image: -gtk-gradient(radial, right center, 0, right center, 0.5, to(#cecece), to(rgba(206, 206, 206, 0))); + background-size: 5% 100%; + background-repeat: no-repeat; + background-position: right center; + background-color: transparent; + border: none; + box-shadow: none; } + +scrolledwindow junction { + border-color: transparent; + border-image: linear-gradient(to bottom, #c4c4c4 1px, transparent 1px) 0 0 0 1/0 1px stretch; + background-color: #d2d2d2; } + scrolledwindow junction:dir(rtl) { + border-image-slice: 0 1 0 0; } + scrolledwindow junction:backdrop { + border-image-source: linear-gradient(to bottom, #cecece 1px, transparent 1px); + background-color: #efefef; + transition: 200ms ease-out; } + +separator { + background: rgba(0, 0, 0, 0.1); + min-width: 1px; + min-height: 1px; } + +/********* + * Lists * + *********/ +list { + color: black; + background-color: #ffffff; + border-color: #c4c4c4; } + list:backdrop { + color: #323232; + background-color: #fcfcfc; + border-color: #cecece; } + list row { + padding: 2px; } + +row { + transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } + row:hover { + transition: none; } + row:backdrop { + transition: 200ms ease-out; } + row.activatable.has-open-popup, row.activatable:hover { + background-color: rgba(61, 61, 61, 0.05); } + row.activatable:active { + box-shadow: inset 0 2px 2px -2px rgba(0, 0, 0, 0.2); } + row.activatable:backdrop:hover { + background-color: transparent; } + row.activatable:selected:active { + box-shadow: inset 0 2px 3px -1px rgba(0, 0, 0, 0.5); } + row.activatable:selected.has-open-popup, row.activatable:selected:hover { + background-color: #d85223; } + row.activatable:selected:backdrop { + background-color: #e95420; } + +/********************* + * App Notifications * + *********************/ +.app-notification, +.app-notification.frame { + padding: 10px; + border-radius: 0 0 5px 5px; + background-color: rgba(29, 29, 29, 0.975); + background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent 2px); + background-clip: padding-box; } + .app-notification:backdrop, + .app-notification.frame:backdrop { + background-image: none; + transition: 200ms ease-out; } + .app-notification border, + .app-notification.frame border { + border: none; } + +/************* + * Expanders * + *************/ +expander title > arrow { + min-width: 16px; + min-height: 16px; + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } + expander title > arrow:dir(rtl) { + -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } + expander title > arrow:hover { + color: #8a8a8a; } + expander title > arrow:disabled { + color: #9a9a9a; } + expander title > arrow:disabled:backdrop { + color: #d1d1d1; } + expander title > arrow:checked { + -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } + +/************ + * Calendar * + ***********/ +calendar { + color: black; + border: 1px solid #c4c4c4; } + calendar:selected { + border-radius: 3px; } + calendar.header { + border-bottom-color: rgba(0, 0, 0, 0.1); } + calendar.header:backdrop { + border-bottom-color: rgba(0, 0, 0, 0.1); } + calendar.button { + color: rgba(61, 61, 61, 0.45); } + calendar.button:hover { + color: #3D3D3D; } + calendar.button:backdrop { + color: rgba(98, 98, 98, 0.45); } + calendar.button:disabled { + color: rgba(154, 154, 154, 0.45); } + calendar.highlight { + color: #9a9a9a; } + calendar.highlight:backdrop { + color: #d1d1d1; } + calendar:backdrop { + color: #323232; + border-color: #cecece; } + calendar:indeterminate { + color: alpha(currentColor,0.1); } + +/*********** + * Dialogs * + ***********/ +messagedialog .titlebar { + min-height: 20px; + background-image: none; + background-color: #F7F7F7; + border-style: none; + border-top-left-radius: 7px; + border-top-right-radius: 7px; } + +messagedialog.csd.background { + border-bottom-left-radius: 8px; + border-bottom-right-radius: 8px; } + +messagedialog.csd .dialog-action-area button { + padding: 10px 14px; + border-right-style: none; + border-bottom-style: none; + border-radius: 0; + -gtk-outline-radius: 0; } + messagedialog.csd .dialog-action-area button:first-child { + border-left-style: none; + border-bottom-left-radius: 6px; + -gtk-outline-bottom-left-radius: 6px; } + messagedialog.csd .dialog-action-area button:last-child { + border-bottom-right-radius: 6px; + -gtk-outline-bottom-right-radius: 6px; } + +filechooser .dialog-action-box { + border-top: 1px solid #c4c4c4; } + filechooser .dialog-action-box:backdrop { + border-top-color: #cecece; } + +filechooser #pathbarbox { + border-bottom: 1px solid #F7F7F7; } + +filechooserbutton:drop(active) { + box-shadow: none; + border-color: transparent; } + +/*********** + * Sidebar * + ***********/ +.sidebar { + border-style: none; + background-color: #fbfbfb; } + stacksidebar.sidebar:dir(ltr) list, stacksidebar.sidebar.left list, stacksidebar.sidebar.left:dir(rtl) list, .sidebar:not(separator):dir(ltr), .sidebar:not(separator).left { + border-right: 1px solid #c4c4c4; + border-left-style: none; } + stacksidebar.sidebar:dir(rtl) list, stacksidebar.sidebar.right list, .sidebar:not(separator):dir(rtl), .sidebar:not(separator).right { + border-left: 1px solid #c4c4c4; + border-right-style: none; } + .sidebar:backdrop { + background-color: #fafafa; + border-color: #cecece; + transition: 200ms ease-out; } + .sidebar list { + background-color: transparent; } + paned .sidebar.left, paned .sidebar.right, paned .sidebar.left:dir(rtl), paned .sidebar:dir(rtl), paned .sidebar:dir(ltr), paned .sidebar { + border-style: none; } + +stacksidebar row { + padding: 10px 4px; } + stacksidebar row > label { + padding-left: 6px; + padding-right: 6px; } + stacksidebar row.needs-attention > label { + background-size: 6px 6px, 0 0; } + +separator.sidebar { + background-color: #c4c4c4; } + separator.sidebar:backdrop { + background-color: #cecece; } + separator.sidebar.selection-mode, .selection-mode separator.sidebar { + background-color: #073f0f; } + +/**************** + * File chooser * + ****************/ +row image.sidebar-icon { + opacity: 0.7; } + +placessidebar > viewport.frame { + border-style: none; } + +placessidebar row { + min-height: 36px; + padding: 0px; } + placessidebar row > revealer { + padding: 0 14px; } + placessidebar row:selected { + color: #FFFFFF; } + placessidebar row:disabled { + color: #9a9a9a; } + placessidebar row:backdrop { + color: #626262; } + placessidebar row:backdrop:selected { + color: #fcfcfc; } + placessidebar row:backdrop:disabled { + color: #d1d1d1; } + placessidebar row image.sidebar-icon:dir(ltr) { + padding-right: 8px; } + placessidebar row image.sidebar-icon:dir(rtl) { + padding-left: 8px; } + placessidebar row label.sidebar-label:dir(ltr) { + padding-right: 2px; } + placessidebar row label.sidebar-label:dir(rtl) { + padding-left: 2px; } + button.sidebar-button { + min-height: 26px; + min-width: 26px; + margin-top: 3px; + margin-bottom: 3px; + padding: 0; + border-radius: 100%; + -gtk-outline-radius: 100%; } + button.sidebar-button:not(:hover):not(:active) > image, button.sidebar-button:backdrop > image { + opacity: 0.7; } + placessidebar row:selected:active { + box-shadow: none; } + placessidebar row.sidebar-placeholder-row { + padding: 0 8px; + min-height: 2px; + background-image: image(#109b26); + background-clip: content-box; } + placessidebar row.sidebar-new-bookmark-row { + color: #e95420; } + placessidebar row:drop(active):not(:disabled) { + color: #109b26; + box-shadow: inset 0 1px #109b26, inset 0 -1px #109b26; } + placessidebar row:drop(active):not(:disabled):selected { + color: #FFFFFF; + background-color: #109b26; } + +placesview .server-list-button > image { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(0turn); } + +placesview .server-list-button:checked > image { + transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); + -gtk-icon-transform: rotate(-0.5turn); } + +placesview row.activatable:hover { + background-color: transparent; } + +placesview > actionbar > revealer > box > label { + padding-left: 8px; + padding-right: 8px; } + +/********* + * Paned * + *********/ +paned > separator { + min-width: 1px; + min-height: 1px; + -gtk-icon-source: none; + border-style: none; + background-color: transparent; + background-image: image(#c4c4c4); + background-size: 1px 1px; } + paned > separator:selected { + background-image: image(#e95420); } + paned > separator:backdrop { + background-image: image(#cecece); } + paned > separator.wide { + min-width: 5px; + min-height: 5px; + background-color: #F7F7F7; + background-image: image(#c4c4c4), image(#c4c4c4); + background-size: 1px 1px, 1px 1px; } + paned > separator.wide:backdrop { + background-color: #F7F7F7; + background-image: image(#cecece), image(#cecece); } + +paned.horizontal > separator { + background-repeat: repeat-y; } + paned.horizontal > separator:dir(ltr) { + margin: 0 -8px 0 0; + padding: 0 8px 0 0; + background-position: left; } + paned.horizontal > separator:dir(rtl) { + margin: 0 0 0 -8px; + padding: 0 0 0 8px; + background-position: right; } + paned.horizontal > separator.wide { + margin: 0; + padding: 0; + background-repeat: repeat-y, repeat-y; + background-position: left, right; } + +paned.vertical > separator { + margin: 0 0 -8px 0; + padding: 0 0 8px 0; + background-repeat: repeat-x; + background-position: top; } + paned.vertical > separator.wide { + margin: 0; + padding: 0; + background-repeat: repeat-x, repeat-x; + background-position: bottom, top; } + +/************** + * GtkInfoBar * + **************/ +infobar { + border-style: none; } + infobar.action:hover > revealer > box { + background-color: #ecf6f9; + border-bottom: 1px solid #d1d1d1; } + infobar.info, infobar.question, infobar.warning, infobar.error { + text-shadow: none; } + infobar.info:backdrop > revealer > box, infobar.info > revealer > box, infobar.question:backdrop > revealer > box, infobar.question > revealer > box, infobar.warning:backdrop > revealer > box, infobar.warning > revealer > box, infobar.error:backdrop > revealer > box, infobar.error > revealer > box { + background-color: #e4f2f6; + border-bottom: 1px solid #d1d1d1; } + infobar.info:backdrop > revealer > box label, infobar.info:backdrop > revealer > box, infobar.info > revealer > box label, infobar.info > revealer > box, infobar.question:backdrop > revealer > box label, infobar.question:backdrop > revealer > box, infobar.question > revealer > box label, infobar.question > revealer > box, infobar.warning:backdrop > revealer > box label, infobar.warning:backdrop > revealer > box, infobar.warning > revealer > box label, infobar.warning > revealer > box, infobar.error:backdrop > revealer > box label, infobar.error:backdrop > revealer > box, infobar.error > revealer > box label, infobar.error > revealer > box { + color: #3D3D3D; } + infobar.info:backdrop, infobar.question:backdrop, infobar.warning:backdrop, infobar.error:backdrop { + text-shadow: none; } + infobar.info button, infobar.question button, infobar.warning button, infobar.error button { + color: #3D3D3D; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #c4c4c4; + background-image: image(#fcfcfc); + text-shadow: 0 1px rgba(255, 255, 255, 0.769231); + -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); + box-shadow: 0 1px rgba(0, 0, 0, 0.05); } + infobar.info button:hover, infobar.question button:hover, infobar.warning button:hover, infobar.error button:hover { + color: #3D3D3D; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #c4c4c4; + border-bottom-color: #bababa; + text-shadow: 0 1px rgba(255, 255, 255, 0.769231); + -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); + box-shadow: inset 0 1px white, 0 1px 2px rgba(0, 0, 0, 0.07); + box-shadow: 0 1px rgba(0, 0, 0, 0.15); + background-image: image(white); } + infobar.info button:active, infobar.info button:checked, infobar.question button:active, infobar.question button:checked, infobar.warning button:active, infobar.warning button:checked, infobar.error button:active, infobar.error button:checked { + color: #3D3D3D; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #c4c4c4; + background-image: image(lightgray); + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + text-shadow: none; + -gtk-icon-shadow: none; } + infobar.info button:disabled, infobar.question button:disabled, infobar.warning button:disabled, infobar.error button:disabled { + color: #9a9a9a; + border-color: #c4c4c4; + background-image: image(#fafafa); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + infobar.info button:backdrop, infobar.question button:backdrop, infobar.warning button:backdrop, infobar.error button:backdrop { + color: #626262; + border-color: #cecece; + background-image: image(#F7F7F7); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + border-color: #dedede; } + infobar.info button:backdrop:disabled, infobar.question button:backdrop:disabled, infobar.warning button:backdrop:disabled, infobar.error button:backdrop:disabled { + color: #d1d1d1; + border-color: #cecece; + background-image: image(#fafafa); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + border-color: #dedede; } + infobar.info button:backdrop label, infobar.info button:backdrop, infobar.info button label, infobar.info button, infobar.question button:backdrop label, infobar.question button:backdrop, infobar.question button label, infobar.question button, infobar.warning button:backdrop label, infobar.warning button:backdrop, infobar.warning button label, infobar.warning button, infobar.error button:backdrop label, infobar.error button:backdrop, infobar.error button label, infobar.error button { + color: #3D3D3D; } + infobar.info selection, infobar.question selection, infobar.warning selection, infobar.error selection { + background-color: #dedede; } + infobar.info *:link, infobar.question *:link, infobar.warning *:link, infobar.error *:link { + color: #007aa6; } + +/************ + * Tooltips * + ************/ +tooltip { + padding: 4px; + /* not working */ + border-radius: 5px; + box-shadow: none; + text-shadow: 0 1px black; } + tooltip.background { + background-color: rgba(0, 0, 0, 0.8); + background-clip: padding-box; + border: 1px solid rgba(255, 255, 255, 0.1); } + tooltip decoration { + background-color: transparent; } + tooltip * { + padding: 4px; + background-color: transparent; + color: white; } + +/***************** + * Color Chooser * + *****************/ +colorswatch:drop(active), colorswatch { + border-style: none; } + +colorswatch.top { + border-top-left-radius: 5.5px; + border-top-right-radius: 5.5px; } + colorswatch.top overlay { + border-top-left-radius: 5px; + border-top-right-radius: 5px; } + +colorswatch.bottom { + border-bottom-left-radius: 5.5px; + border-bottom-right-radius: 5.5px; } + colorswatch.bottom overlay { + border-bottom-left-radius: 5px; + border-bottom-right-radius: 5px; } + +colorswatch.left, colorswatch:first-child:not(.top) { + border-top-left-radius: 5.5px; + border-bottom-left-radius: 5.5px; } + colorswatch.left overlay, colorswatch:first-child:not(.top) overlay { + border-top-left-radius: 5px; + border-bottom-left-radius: 5px; } + +colorswatch.right, colorswatch:last-child:not(.bottom) { + border-top-right-radius: 5.5px; + border-bottom-right-radius: 5.5px; } + colorswatch.right overlay, colorswatch:last-child:not(.bottom) overlay { + border-top-right-radius: 5px; + border-bottom-right-radius: 5px; } + +colorswatch.dark { + outline-color: rgba(255, 255, 255, 0.6); } + colorswatch.dark overlay { + color: white; } + colorswatch.dark overlay:hover { + border-color: rgba(0, 0, 0, 0.8); } + colorswatch.dark overlay:backdrop { + color: rgba(255, 255, 255, 0.5); } + +colorswatch.light { + outline-color: rgba(0, 0, 0, 0.6); } + colorswatch.light overlay { + color: black; } + colorswatch.light overlay:hover { + border-color: rgba(0, 0, 0, 0.5); } + colorswatch.light overlay:backdrop { + color: rgba(0, 0, 0, 0.5); } + +colorswatch:drop(active) { + box-shadow: none; } + colorswatch:drop(active).light overlay { + border-color: #109b26; + box-shadow: inset 0 0 0 2px #0d7b1e, inset 0 0 0 1px #109b26; } + colorswatch:drop(active).dark overlay { + border-color: #109b26; + box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.3), inset 0 0 0 1px #109b26; } + +colorswatch overlay { + border: 1px solid rgba(0, 0, 0, 0.3); } + colorswatch overlay:hover { + box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), inset 0 -1px rgba(0, 0, 0, 0.2); } + colorswatch overlay:backdrop, colorswatch overlay:backdrop:hover { + border-color: rgba(0, 0, 0, 0.3); + box-shadow: none; } + +colorswatch#add-color-button { + border-radius: 5px 5px 0 0; } + colorswatch#add-color-button:only-child { + border-radius: 5px; } + colorswatch#add-color-button overlay { + color: #3D3D3D; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #c4c4c4; + background-image: image(#fcfcfc); + text-shadow: 0 1px rgba(255, 255, 255, 0.769231); + -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); + box-shadow: 0 1px rgba(0, 0, 0, 0.05); } + colorswatch#add-color-button overlay:hover { + color: #3D3D3D; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #c4c4c4; + border-bottom-color: #bababa; + text-shadow: 0 1px rgba(255, 255, 255, 0.769231); + -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); + box-shadow: inset 0 1px white, 0 1px 2px rgba(0, 0, 0, 0.07); + box-shadow: 0 1px rgba(0, 0, 0, 0.15); + background-image: image(white); } + colorswatch#add-color-button overlay:backdrop { + color: #626262; + border-color: #cecece; + background-image: image(#F7F7F7); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + +colorswatch:disabled { + opacity: 0.5; } + colorswatch:disabled overlay { + border-color: rgba(0, 0, 0, 0.6); + box-shadow: none; } + +row:selected colorswatch { + box-shadow: 0 0 0 2px #FFFFFF; } + +colorswatch#editor-color-sample { + border-radius: 4px; } + colorswatch#editor-color-sample overlay { + border-radius: 4.5px; } + +colorchooser .popover.osd { + border-radius: 5px; } + +/******** + * Misc * + ********/ +.content-view { + background-color: #e5e5e5; } + .content-view:hover { + -gtk-icon-effect: highlight; } + .content-view:backdrop { + background-color: #e5e5e5; } + +.osd .scale-popup button.flat { + border-style: none; + border-radius: 5px; } + +.scale-popup button:hover { + background-color: rgba(61, 61, 61, 0.1); + border-radius: 5px; } + +/********************** + * Window Decorations * + *********************/ +decoration { + border-radius: 7px 7px 0 0; + border-width: 0px; + box-shadow: 0 3px 9px 1px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 0, 0, 0.23); + margin: 10px; } + decoration:backdrop { + box-shadow: 0 3px 9px 1px transparent, 0 2px 6px 2px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.18); + transition: 200ms ease-out; } + .maximized decoration, .fullscreen decoration, .tiled decoration, .tiled-top decoration, .tiled-right decoration, .tiled-bottom decoration, .tiled-left decoration { + border-radius: 0; } + .popup decoration { + box-shadow: none; } + .ssd decoration { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.23); } + .csd.popup decoration { + border-radius: 4px; + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.13); } + tooltip.csd decoration { + border-radius: 5px; + box-shadow: none; } + messagedialog.csd decoration { + border-radius: 7px; + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.13); } + .solid-csd decoration { + margin: 0; + padding: 4px; + background-color: #c4c4c4; + border: solid 1px #c4c4c4; + border-radius: 0; + box-shadow: inset 0 0 0 3px white, inset 0 1px rgba(255, 255, 255, 0.8); } + .solid-csd decoration:backdrop { + box-shadow: inset 0 0 0 3px #F7F7F7, inset 0 1px rgba(255, 255, 255, 0.8); } + +button.titlebutton { + text-shadow: 0 1px rgba(255, 255, 255, 0.769231); + -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); } + button.titlebutton:not(.appmenu) { + border-radius: 9999px; + padding: 6px; + margin: 0 2px; + min-width: 0; + min-height: 0; } + button.titlebutton:backdrop { + -gtk-icon-shadow: none; } + +.selection-mode headerbar button.titlebutton, +.selection-mode .titlebar button.titlebutton, +headerbar.selection-mode button.titlebutton, +.titlebar.selection-mode button.titlebutton { + text-shadow: 0 -1px rgba(0, 0, 0, 0.73098); + -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.73098); } + .selection-mode headerbar button.titlebutton:backdrop, + .selection-mode .titlebar button.titlebutton:backdrop, + headerbar.selection-mode button.titlebutton:backdrop, + .titlebar.selection-mode button.titlebutton:backdrop { + -gtk-icon-shadow: none; } + +.view:selected:focus, .view:selected, +.view text:selected:focus, +textview text:selected:focus, +.view text:selected, +textview text:selected, .view text selection:focus, .view text selection, +textview text selection:focus, +textview text selection, iconview:selected:focus, iconview:selected, iconview text selection:focus, .view text selection, iconview text selection, flowbox flowboxchild:selected, +entry selection, modelbutton.flat:selected, +.menuitem.button.flat:selected, spinbutton:not(.vertical) selection, treeview.view:selected:focus, treeview.view:selected, row:selected, calendar:selected { + background-color: #e95420; } + label:selected, .selection-mode button.titlebutton, .view:selected:focus, .view:selected, + .view text:selected:focus, + textview text:selected:focus, + .view text:selected, + textview text:selected, .view text selection:focus, .view text selection, + textview text selection:focus, + textview text selection, iconview:selected:focus, iconview:selected, iconview text selection:focus, .view text selection, iconview text selection, flowbox flowboxchild:selected, + entry selection, modelbutton.flat:selected, + .menuitem.button.flat:selected, spinbutton:not(.vertical) selection, treeview.view:selected:focus, treeview.view:selected, row:selected, calendar:selected { + color: #FFFFFF; } + label:disabled selection, label:disabled:selected, .selection-mode button.titlebutton:disabled, .view:disabled:selected, + textview text:disabled:selected:focus, + .view text:disabled:selected, + textview text:disabled:selected, .view text selection:disabled, + textview text selection:disabled:focus, + textview text selection:disabled, iconview:disabled:selected:focus, iconview:disabled:selected, iconview text selection:disabled:focus, iconview text selection:disabled, flowbox flowboxchild:disabled:selected, + entry selection:disabled, modelbutton.flat:disabled:selected, + .menuitem.button.flat:disabled:selected, spinbutton:not(.vertical) selection:disabled, treeview.view:disabled:selected, row:disabled:selected, calendar:disabled:selected { + color: #f4aa90; } + label:backdrop selection, label:backdrop:selected, .selection-mode button.titlebutton:backdrop, .view:backdrop:selected, + textview text:backdrop:selected:focus, + .view text:backdrop:selected, + textview text:backdrop:selected, .view text selection:backdrop, + textview text selection:backdrop:focus, + textview text selection:backdrop, iconview:backdrop:selected:focus, iconview:backdrop:selected, iconview text selection:backdrop:focus, iconview text selection:backdrop, flowbox flowboxchild:backdrop:selected, + entry selection:backdrop, modelbutton.flat:backdrop:selected, + .menuitem.button.flat:backdrop:selected, spinbutton:not(.vertical) selection:backdrop, treeview.view:backdrop:selected, row:backdrop:selected, calendar:backdrop:selected { + color: #fcfcfc; } + label:backdrop selection:disabled, label:backdrop:disabled:selected, .selection-mode button.titlebutton:backdrop:disabled, .view:backdrop:disabled:selected, + .view text:backdrop:disabled:selected, + textview text:backdrop:disabled:selected, .view text selection:backdrop:disabled, + textview text selection:backdrop:disabled, iconview:backdrop:disabled:selected, iconview text selection:backdrop:disabled, flowbox flowboxchild:backdrop:disabled:selected, + entry selection:backdrop:disabled, modelbutton.flat:backdrop:disabled:selected, + .menuitem.button.flat:backdrop:disabled:selected, spinbutton:not(.vertical) selection:backdrop:disabled, row:backdrop:disabled:selected, calendar:backdrop:disabled:selected { + color: #ef8762; } + +.monospace { + font-family: monospace; } + +/********************** + * Touch Copy & Paste * + *********************/ +cursor-handle { + background-color: transparent; + background-image: none; + box-shadow: none; + border-style: none; } + cursor-handle.top:dir(ltr), cursor-handle.bottom:dir(rtl) { + -gtk-icon-source: -gtk-scaled(url("assets/text-select-start.png"), url("assets/text-select-start@2.png")); + padding-left: 10px; } + cursor-handle.bottom:dir(ltr), cursor-handle.top:dir(rtl) { + -gtk-icon-source: -gtk-scaled(url("assets/text-select-end.png"), url("assets/text-select-end@2.png")); + padding-right: 10px; } + cursor-handle.insertion-cursor:dir(ltr), cursor-handle.insertion-cursor:dir(rtl) { + -gtk-icon-source: -gtk-scaled(url("assets/slider-horz-scale-has-marks-above.png"), url("assets/slider-horz-scale-has-marks-above@2.png")); } + cursor-handle.top:hover:dir(ltr), cursor-handle.bottom:hover:dir(rtl) { + -gtk-icon-source: -gtk-scaled(url("assets/text-select-start-hover.png"), url("assets/text-select-start-hover@2.png")); + padding-left: 10px; } + cursor-handle.bottom:hover:dir(ltr), cursor-handle.top:hover:dir(rtl) { + -gtk-icon-source: -gtk-scaled(url("assets/text-select-end-hover.png"), url("assets/text-select-end-hover@2.png")); + padding-right: 10px; } + cursor-handle.insertion-cursor:hover:dir(ltr), cursor-handle.insertion-cursor:hover:dir(rtl) { + -gtk-icon-source: -gtk-scaled(url("assets/slider-horz-scale-has-marks-above-hover.png"), url("assets/slider-horz-scale-has-marks-above-hover@2.png")); } + cursor-handle.top:active:dir(ltr), cursor-handle.bottom:active:dir(rtl) { + -gtk-icon-source: -gtk-scaled(url("assets/text-select-start-active.png"), url("assets/text-select-start-active@2.png")); + padding-left: 10px; } + cursor-handle.bottom:active:dir(ltr), cursor-handle.top:active:dir(rtl) { + -gtk-icon-source: -gtk-scaled(url("assets/text-select-end-active.png"), url("assets/text-select-end-active@2.png")); + padding-right: 10px; } + cursor-handle.insertion-cursor:active:dir(ltr), cursor-handle.insertion-cursor:active:dir(rtl) { + -gtk-icon-source: -gtk-scaled(url("assets/slider-horz-scale-has-marks-above-active.png"), url("assets/slider-horz-scale-has-marks-above-active@2.png")); } + +.context-menu { + font: initial; } + +.keycap { + min-width: 20px; + min-height: 25px; + margin-top: 2px; + padding-bottom: 3px; + padding-left: 6px; + padding-right: 6px; + color: #3D3D3D; + background-color: #ffffff; + border: 1px solid; + border-color: #dedede; + border-radius: 5px; + box-shadow: inset 0 -3px #f9f9f9; + font-size: smaller; } + .keycap:backdrop { + background-color: #fcfcfc; + color: #626262; + transition: 200ms ease-out; } + +:not(decoration):not(window):drop(active):focus, +:not(decoration):not(window):drop(active) { + border-color: #109b26; + box-shadow: inset 0 0 0 1px #109b26; + caret-color: #109b26; } + +stackswitcher button.text-button { + min-width: 100px; } + +stackswitcher button.circular, +stackswitcher button.text-button.circular { + min-width: 32px; + min-height: 32px; + padding: 0; } + +/************* + * App Icons * + *************/ +/* Outline for low res icons */ +.lowres-icon { + -gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.05), 1px 0 rgba(0, 0, 0, 0.1), 0 1px rgba(0, 0, 0, 0.3), -1px 0 rgba(0, 0, 0, 0.1); } + +/* Dropshadow for large icons */ +.icon-dropshadow { + -gtk-icon-shadow: 0 1px 12px rgba(0, 0, 0, 0.05), 0 -1px rgba(0, 0, 0, 0.05), 1px 0 rgba(0, 0, 0, 0.1), 0 1px rgba(0, 0, 0, 0.3), -1px 0 rgba(0, 0, 0, 0.1); } + +/********* + * Emoji * + ********/ +popover.emoji-picker { + padding-left: 0; + padding-right: 0; } + popover.emoji-picker entry.search { + margin: 3px 5px 5px 5px; } + +button.emoji-section { + border-color: transparent; + border-width: 3px; + border-style: none none solid; + border-radius: 0; + margin: 2px 4px 2px 4px; + padding: 3px 0 0; + min-width: 32px; + min-height: 28px; + /* reset props inherited from the button style */ + background: none; + box-shadow: none; + text-shadow: none; + outline-offset: -5px; } + button.emoji-section:first-child { + margin-left: 7px; } + button.emoji-section:last-child { + margin-right: 7px; } + button.emoji-section:backdrop:not(:checked) { + border-color: transparent; } + button.emoji-section:hover { + border-color: #c4c4c4; } + button.emoji-section:checked { + border-color: #e95420; } + button.emoji-section label { + padding: 0; + opacity: 0.55; } + button.emoji-section:hover label { + opacity: 0.775; } + button.emoji-section:checked label { + opacity: 1; } + +popover.emoji-picker .emoji { + font-size: x-large; + padding: 6px; } + popover.emoji-picker .emoji :hover { + background: #e95420; + border-radius: 6px; } + +popover.emoji-completion arrow { + border: none; + background: none; } + +popover.emoji-completion contents row box { + padding: 2px 10px; } + +popover.emoji-completion .emoji:hover { + background: rgba(61, 61, 61, 0.15); } + +/* set $ambiance to null, unless already defined */ +/*********** + * Tweak Tool * + ***********/ +list.tweak-categories separator { + background: transparent; } + +/*********** + * Nautilus * + ***********/ +.nautilus-window { + background-image: none; + background-color: white; + /* dim the icon when not checked */ } + .nautilus-window:backdrop { + background-color: #fcfcfc; } + .nemo-window .view:backdrop, .nemo-window iconview:backdrop, .nautilus-window *scrolledwindow:backdrop { + opacity: 0.9; } + .nautilus-window infobar { + background-color: #e6e6e6; } + .nautilus-window infobar:backdrop { + background-color: #F7F7F7; } + .nautilus-window paned box.floating-bar { + background-color: #F7F7F7; + border-style: solid; + border-color: #d9d9d9; + border-width: 1px 0 0 1px; + border-radius: 4px 0 0 0; } + .nautilus-window paned box.floating-bar button:dir(ltr).circular.flat.image-button { + background: radial-gradient(circle at 50%, white 35%, #F7F7F7 1%); + color: #c7162b; } + .nautilus-window paned box.floating-bar button:dir(ltr).circular.flat.image-button:hover { + border: 1px solid #c4c4c4; + background: radial-gradient(circle at 50%, white 30%, rgba(61, 61, 61, 0.05) 16%); + color: #de1930; } + .nautilus-window .searchbar-container searchbar { + background: transparent; + border-color: transparent; } + .nautilus-window treeview:drop(active):focus { + border-bottom: 1px solid #109b26; } + .nautilus-window treeview.view header button { + background-color: #ffffff; + background-image: none; + border-color: rgba(196, 196, 196, 0.4); + border-left: 1px; } + .nautilus-window treeview.view header button:hover { + background-color: #F7F7F7; } + .nautilus-window treeview.view header button:backdrop { + background-color: #fcfcfc; } + .nautilus-window .nautilus-list-view .view, .nautilus-window .nautilus-list-view iconview { + border-bottom: 1px solid rgba(196, 196, 196, 0.2); } + .nautilus-window .nautilus-list-view .view.dnd, .nautilus-window .nautilus-list-view iconview.dnd { + border-style: none; } + .nautilus-window notebook > header { + background: #F7F7F7; } + .nautilus-window paned > separator { + background-image: image(rgba(196, 196, 196, 0.4)); } + .nautilus-window paned > separator:backdrop { + background-image: image(rgba(196, 196, 196, 0.3)); } + .nautilus-window entry.search > * { + margin: 5px; } + .nautilus-window .path-bar-box { + border-radius: 5px; + border: 1px solid #c4c4c4; + background-color: #F7F7F7; + padding-right: 6px; } + .nautilus-window .path-bar-box:backdrop { + border-color: #cecece; } + .nautilus-window .path-bar-box:backdrop { + border-color: #cecece; } + .nautilus-window .nautilus-path-bar button { + margin: 0px; } + .nautilus-window .nautilus-path-bar button:first-child { + border-width: 0px 1px 0px 0px; + border-radius: 3.5px 0px 0px 3.5px; } + .nautilus-window .nautilus-path-bar button:not(:first-child) { + border-width: 0px 1px 0px 1px; + border-radius: 0px 0px 0px 0px; } + .nautilus-window .nautilus-path-bar button:not(:checked) image { + opacity: 0.8; } + .nautilus-window .nautilus-canvas-item { + outline-width: 0; + background-color: rgba(255, 255, 255, 0.1); } + .nautilus-window .nautilus-canvas-item:selected:not(:backdrop):dir(ltr) { + background-color: #e95420; } + .nautilus-window .nautilus-canvas-item:selected:not(:backdrop):not(:dir(ltr)) { + background-color: rgba(175, 175, 175, 0.5); } + .nautilus-window .nautilus-canvas-item:backdrop:selected { + background-color: #e95420; + color: #fcfcfc; } + +.disk-space-display { + border-style: solid; + border-width: 2px; } + +.disk-space-display.unknown { + background-color: #fafafa; + border-color: rgba(250, 250, 250, 0.3); + color: #fafafa; } + +.disk-space-display.unknown.border { + color: rgba(250, 250, 250, 0.3); } + +.disk-space-display.used { + background-color: #e95420; + border-color: rgba(233, 84, 32, 0.3); + color: #e95420; } + +.disk-space-display.used.border { + color: rgba(233, 84, 32, 0.3); } + +.disk-space-display.free { + background-color: #dedede; + border-color: rgba(222, 222, 222, 0.3); + color: #dedede; } + +.disk-space-display.free.border { + color: rgba(222, 222, 222, 0.3); } + +/************ + * Terminal * + ************/ +terminal-window .terminal-screen { + background-color: #300A24; + color: white; } + terminal-window .terminal-screen:backdrop { + background-color: #380c2a; + color: #fcfcfc; } + +terminal-window notebook scrollbar { + background-color: transparent; + border-color: transparent; } + terminal-window notebook scrollbar:backdrop { + background-color: transparent; + border-color: transparent; } + terminal-window notebook scrollbar slider { + margin: 0; + border-width: 3px; } + terminal-window notebook scrollbar slider:backdrop { + background-color: alpha(currentColor,0.1); } + terminal-window notebook scrollbar slider:disabled { + background-color: transparent; } + terminal-window notebook scrollbar.dragging, terminal-window notebook scrollbar.hovering { + background-color: transparent; } + +/****************** + * GNOME Software * + ******************/ +.review-row { + margin-bottom: 10px; + padding: 6px 12px; + box-shadow: 0 1px 2.5px rgba(0, 0, 0, 0.25); + outline-offset: -1px; } + .review-row, .review-row:not(:selected):not(:backdrop):hover, .review-row:not(:selected):not(:backdrop):active { + background-color: #ffffff; } + .review-row:backdrop { + background-color: #fcfcfc; } + .review-row:last-child { + margin-bottom: 0; } + .review-row > grid { + margin-top: -24px; } + +.app-listbox-header { + background: #dedede; } + +.list-box-app-row { + border-radius: 0; + border-color: #c4c4c4; + border-style: none solid solid solid; + border-width: 0 1px 1px 1px; + margin: -1px 0 0 0; } + .list-box-app-row ~ separator { + background-color: #F7F7F7; + border: none; + min-height: 0px; } + +box > list row.list-box-app-row { + border: none; } + +.counter-label { + margin-top: 2px; + margin-bottom: 2px; + border-width: 0px; + padding-left: 2px; + padding-right: 2px; + box-shadow: inset 0 0 10px 10px #109b26; } + +/********* + * Gedit * + *********/ +.gedit-bottom-panel-paned notebook > header { + background: #F7F7F7; } + +.gedit-bottom-panel-paned ~ statusbar { + border-top: 1px solid #c4c4c4; } + .gedit-bottom-panel-paned ~ statusbar:backdrop { + border-color: #cecece; } + +.gedit-search-slider { + background: #F7F7F7; + border: 1px solid #c4c4c4; + border-top-style: none; + padding: 4px 8px; + border-radius: 0 0 5px 5px; } + .gedit-search-slider:backdrop { + background-color: #F7F7F7; + border-color: #cecece; } + +.gedit-search-entry-occurrences-tag { + color: rgba(61, 61, 61, 0.35); + border: none; + box-shadow: none; + margin: 2px; + padding: 2px; } + +.gedit-document-panel { + background-color: #F7F7F7; } + .gedit-document-panel row.activatable { + padding: 6px; } + .gedit-document-panel row button { + min-width: 22px; + min-height: 22px; + padding: 0; + margin: 0; + border: none; } + .gedit-document-panel row:hover button:hover { + background-color: rgba(61, 61, 61, 0.15); } + .gedit-document-panel row:hover button:active { + background-color: rgba(61, 61, 61, 0.25); } + .gedit-document-panel row:hover:selected button:hover { + color: #FFFFFF; } + +/*************** + * GNOME Disks * + ***************/ +headerbar button image ~ window decoration ~ menu separator { + background: #c4c4c4; } + +/******** + * Nemo * + ********/ +.nemo-properties-dialog .dialog-action-box .dialog-action-area { + margin: 2px 6px 4px; } + +.nemo-properties-dialog toolbar stackswitcher.linked button { + margin-right: 0; } + .nemo-properties-dialog toolbar stackswitcher.linked button:backdrop { + color: #626262; + background-color: #F7F7F7; } + +.nemo-window .sidebar scrolledwindow.frame.nemo-places-sidebar { + border: none; } + +.nemo-window .sidebar viewport.frame box.vertical treeview.view.places-treeview { + background-image: image(#fbfbfb); + border-radius: 0; } + .nemo-window .sidebar viewport.frame box.vertical treeview.view.places-treeview:backdrop { + background-image: image(#fafafa); } + .nemo-window .sidebar viewport.frame box.vertical treeview.view.places-treeview:selected { + background: #e95420; } + .nemo-window .sidebar viewport.frame box.vertical treeview.view.places-treeview:not(:selected):not(:backdrop):hover { + background-image: image(rgba(61, 61, 61, 0.05)); } + +.nemo-window .nemo-inactive-pane .view, .nemo-window .nemo-inactive-pane iconview { + background-color: #F7F7F7; } + +.nemo-window .nemo-window-pane widget.entry { + border: 1px solid; + border-radius: 3px; + color: #3D3D3D; + border-color: #e95420; + background-color: #F7F7F7; } + +.nemo-window .nemo-window-pane widget.entry:selected { + border: 1px solid; + border-radius: 3px; + color: #FFFFFF; + border-color: #e95420; + background-color: #e95420; } + +.nemo-window toolbar.horizontal.primary-toolbar { + border-bottom: 1px solid #c4c4c4; } + .nemo-window toolbar.horizontal.primary-toolbar widget.linked.raised button:first-child widget { + -gtk-icon-source: -gtk-icontheme("go-previous-symbolic"); } + .nemo-window toolbar.horizontal.primary-toolbar widget.linked.raised button:last-child widget { + -gtk-icon-source: -gtk-icontheme("go-next-symbolic"); } + .nemo-window toolbar.horizontal.primary-toolbar toolitem box widget * { + min-height: 0; + min-width: 0; } + .nemo-window toolbar.horizontal.primary-toolbar .linked button { + margin-right: 0; } + .nemo-window toolbar.horizontal.primary-toolbar button { + color: #3D3D3D; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #c4c4c4; + background-image: image(#fcfcfc); + text-shadow: 0 1px rgba(255, 255, 255, 0.769231); + -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); + box-shadow: 0 1px rgba(0, 0, 0, 0.05); } + .nemo-window toolbar.horizontal.primary-toolbar button:hover { + color: #3D3D3D; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #c4c4c4; + border-bottom-color: #bababa; + text-shadow: 0 1px rgba(255, 255, 255, 0.769231); + -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); + box-shadow: inset 0 1px white, 0 1px 2px rgba(0, 0, 0, 0.07); + box-shadow: 0 1px rgba(0, 0, 0, 0.15); + background-image: image(white); } + .nemo-window toolbar.horizontal.primary-toolbar button:active, .nemo-window toolbar.horizontal.primary-toolbar button:checked { + color: #3D3D3D; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #c4c4c4; + background-image: image(lightgray); + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + text-shadow: none; + -gtk-icon-shadow: none; } + .nemo-window toolbar.horizontal.primary-toolbar button:disabled { + color: #9a9a9a; + border-color: #c4c4c4; + background-image: image(#fafafa); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + .nemo-window toolbar.horizontal.primary-toolbar button:disabled:active, .nemo-window toolbar.horizontal.primary-toolbar button:disabled:checked { + color: #9a9a9a; + border-color: #c4c4c4; + background-image: image(#e4e4e4); + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + .nemo-window toolbar.horizontal.primary-toolbar button:backdrop { + color: #626262; + border-color: #cecece; + background-image: image(#F7F7F7); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + .nemo-window toolbar.horizontal.primary-toolbar button:backdrop:active, .nemo-window toolbar.horizontal.primary-toolbar button:backdrop:checked { + color: #626262; + border-color: #cecece; + background-image: image(#e4e4e4); + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + .nemo-window toolbar.horizontal.primary-toolbar button:backdrop:disabled { + color: #d1d1d1; + border-color: #cecece; + background-image: image(#fafafa); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + .nemo-window toolbar.horizontal.primary-toolbar button:backdrop:disabled:active, .nemo-window toolbar.horizontal.primary-toolbar button:backdrop:disabled:checked { + color: #d1d1d1; + border-color: #cecece; + background-image: image(#e4e4e4); + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + +/************* + * GNOME ToDo * + **************/ +.org-gnome-Todo taskrow.activatable.new-task-row button.popup.toggle { + border-radius: 0px; + border: none; + border-left: 1px solid #c4c4c4; + padding-left: 10px; + padding-right: 10px; + -gtk-outline-radius: 0px; } + +.org-gnome-Todo viewport.view, .org-gnome-Todo listbox.transparent { + background-color: #f2f2f2; } + .org-gnome-Todo viewport.view:backdrop, .org-gnome-Todo listbox.transparent:backdrop { + background-color: #fcfcfc; } + +/*********** + * Firefox * + ***********/ +#MozillaGtkWidget.background menu, #MozillaGtkWidget.background .menu, #MozillaGtkWidget.background .context-menu { + border-radius: 0; } + +#MozillaGtkWidget.background scrollbar { + background-color: transparent; + border-color: transparent; } + #MozillaGtkWidget.background scrollbar slider { + background-color: #6e6e6e; } + #MozillaGtkWidget.background scrollbar slider:hover { + background-color: #494949; } + #MozillaGtkWidget.background scrollbar slider:hover:active { + background-color: #c34113; } + #MozillaGtkWidget.background scrollbar slider:backdrop { + background-color: #bbbbbb; } + #MozillaGtkWidget.background scrollbar slider:disabled { + background-color: transparent; } + #MozillaGtkWidget.background scrollbar trough { + background-color: rgba(247, 247, 247, 0.2); } + +normal-button { + color: #3D3D3D; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #c4c4c4; + background-image: image(#fcfcfc); + text-shadow: 0 1px rgba(255, 255, 255, 0.769231); + -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); + box-shadow: 0 1px rgba(0, 0, 0, 0.05); } + normal-button:hover { + color: #3D3D3D; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #c4c4c4; + border-bottom-color: #bababa; + text-shadow: 0 1px rgba(255, 255, 255, 0.769231); + -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); + box-shadow: inset 0 1px white, 0 1px 2px rgba(0, 0, 0, 0.07); + box-shadow: 0 1px rgba(0, 0, 0, 0.15); + background-image: image(white); } + normal-button:active { + color: #3D3D3D; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #c4c4c4; + background-image: image(lightgray); + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + text-shadow: none; + -gtk-icon-shadow: none; } + normal-button:disabled { + color: #9a9a9a; + border-color: #c4c4c4; + background-image: image(#fafafa); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + +/*********** + * Ubiquity * + ***********/ +#live_installer #title_eventbox { + background-color: #F7F7F7; + color: #3D3D3D; } + #live_installer #title_eventbox:backdrop { + background-color: #F7F7F7; + color: #626262; } + +#live_installer #dot_grid progressbar { + border-radius: 100%; + padding: 1px; + padding-top: 2px; + background-color: white; + border: 1px solid #e95420; } + #live_installer #dot_grid progressbar .empty { + border-radius: 100%; + background-color: white; + padding: 0px; } + #live_installer #dot_grid progressbar .full progress { + border-radius: 100%; + padding: 1px; + padding-top: 2px; + margin-bottom: 2px; } + +#dialog-action_area1 { + padding-bottom: 5px; + padding-right: 5px; } + +/*********** + * Geary * + ***********/ +.geary-expanded headerbar { + border: none; } + +/*********** + * usb-creator-gtk * + ***********/ +#dialog-action_area3 { + margin: 5px; } + +/*********** + * Evolution * + ***********/ +assistant.background scrolledwindow .vertical checkbutton { + margin-left: 1px; } + +/*********** +* Unity7 * +***********/ +UnityDecoration { + -UnityDecoration-extents: 32px 0px 0px 0px; + -UnityDecoration-input-extents: 10px; + -UnityDecoration-shadow-offset-x: 1px; + -UnityDecoration-shadow-offset-y: 1px; + -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.5); + -UnityDecoration-active-shadow-radius: 10px; + -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.001); + -UnityDecoration-inactive-shadow-radius: 0px; + -UnityDecoration-glow-size: 0px; + -UnityDecoration-glow-color: #e95420; + -UnityDecoration-title-indent: 0px; + -UnityDecoration-title-fade: 0px; + -UnityDecoration-title-alignment: 0.5; } + UnityDecoration .top { + border: none; + border-radius: 7px 7px 0 0; + padding: 1px 7px 0 7px; + background-color: #323030; + color: #F7F7F7; + text-shadow: none; + box-shadow: inset 0 1px #474444; } + UnityDecoration .top:backdrop { + border: none; + background-color: #3f3c3c; + color: #bcbbbb; + box-shadow: inset 0 1px rgba(71, 68, 68, 0.6); } + UnityDecoration .left, UnityDecoration .right, UnityDecoration .bottom { + border: none; + background-color: transparent; } + UnityDecoration .left:backdrop, UnityDecoration .right:backdrop, UnityDecoration .bottom:backdrop { + background-color: transparent; } + +UnityPanelWidget, .unity-panel { + background-color: #323030; + color: #F7F7F7; + border: 0; } + +.unity-panel.menuitem, .unity-panel .menuitem { + border-width: 0 1px; + color: #F7F7F7; + background-color: transparent; } + .unity-panel.menuitem:hover, .unity-panel.menuitem *:hover, .unity-panel .menuitem:hover, .unity-panel .menuitem *:hover { + box-shadow: inset 0 -2px 0 0 #e95420; + background-color: transparent; + color: #F7F7F7; } + +SheetStyleDialog.unity-force-quit { + background-color: #F7F7F7; } + +headerbar *, button * { + text-shadow: none; + -gtk-icon-shadow: none; } + +spinner:not(:backdrop) { + color: #19B6EE; } + +button.suggested-action spinner, button.destructive-action spinner { + color: #FFFFFF; } + button.suggested-action spinner:backdrop, button.destructive-action spinner:backdrop { + color: #fcfcfc; } + +button.titlebutton:not(.appmenu) { + min-height: 24px; + min-width: 24px; + padding: 2px; } + headerbar button.titlebutton:not(.appmenu).maximize:hover, headerbar button.titlebutton:not(.appmenu).maximize:backdrop:hover, headerbar button.titlebutton:not(.appmenu).minimize:hover, headerbar button.titlebutton:not(.appmenu).minimize:backdrop:hover, .titlebar button.titlebutton:not(.appmenu).maximize:hover, .titlebar button.titlebutton:not(.appmenu).maximize:backdrop:hover, .titlebar button.titlebutton:not(.appmenu).minimize:hover, .titlebar button.titlebutton:not(.appmenu).minimize:backdrop:hover, headerbar.selection-mode button.titlebutton:not(.appmenu).maximize:hover, headerbar.selection-mode button.titlebutton:not(.appmenu).maximize:backdrop:hover, headerbar.selection-mode button.titlebutton:not(.appmenu).minimize:hover, headerbar.selection-mode button.titlebutton:not(.appmenu).minimize:backdrop:hover, button.titlebutton:not(.appmenu).maximize:hover, button.titlebutton:not(.appmenu).maximize:backdrop:hover, button.titlebutton:not(.appmenu).minimize:hover, button.titlebutton:not(.appmenu).minimize:backdrop:hover { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.3571428571, to(rgba(61, 61, 61, 0.15)), to(transparent)); } + headerbar button.titlebutton:not(.appmenu).maximize:active, headerbar button.titlebutton:not(.appmenu).maximize:backdrop:active, headerbar button.titlebutton:not(.appmenu).minimize:active, headerbar button.titlebutton:not(.appmenu).minimize:backdrop:active, .titlebar button.titlebutton:not(.appmenu).maximize:active, .titlebar button.titlebutton:not(.appmenu).maximize:backdrop:active, .titlebar button.titlebutton:not(.appmenu).minimize:active, .titlebar button.titlebutton:not(.appmenu).minimize:backdrop:active, headerbar.selection-mode button.titlebutton:not(.appmenu).maximize:active, headerbar.selection-mode button.titlebutton:not(.appmenu).maximize:backdrop:active, headerbar.selection-mode button.titlebutton:not(.appmenu).minimize:active, headerbar.selection-mode button.titlebutton:not(.appmenu).minimize:backdrop:active, button.titlebutton:not(.appmenu).maximize:active, button.titlebutton:not(.appmenu).maximize:backdrop:active, button.titlebutton:not(.appmenu).minimize:active, button.titlebutton:not(.appmenu).minimize:backdrop:active { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.3571428571, to(rgba(61, 61, 61, 0.25)), to(transparent)); } + headerbar button.titlebutton:not(.appmenu).close, .titlebar button.titlebutton:not(.appmenu).close, headerbar.selection-mode button.titlebutton:not(.appmenu).close, button.titlebutton:not(.appmenu).close { + color: #FFFFFF; + background-image: -gtk-gradient(radial, center center, 0, center center, 0.3571428571, to(#e95420), to(transparent)); } + headerbar button.titlebutton:not(.appmenu).close:hover, .titlebar button.titlebutton:not(.appmenu).close:hover, headerbar.selection-mode button.titlebutton:not(.appmenu).close:hover, button.titlebutton:not(.appmenu).close:hover { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.3571428571, to(#e95420), to(transparent)); + background-image: -gtk-gradient(radial, center center, 0, center center, 0.3571428571, to(#eb6637), to(transparent)); } + headerbar button.titlebutton:not(.appmenu).close:active, .titlebar button.titlebutton:not(.appmenu).close:active, headerbar.selection-mode button.titlebutton:not(.appmenu).close:active, button.titlebutton:not(.appmenu).close:active { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.3571428571, to(#e95420), to(transparent)); + background-image: -gtk-gradient(radial, center center, 0, center center, 0.3571428571, to(#da4816), to(transparent)); } + headerbar button.titlebutton:not(.appmenu).close:backdrop, .titlebar button.titlebutton:not(.appmenu).close:backdrop, headerbar.selection-mode button.titlebutton:not(.appmenu).close:backdrop, button.titlebutton:not(.appmenu).close:backdrop { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.3571428571, to(#a3a3a3), to(transparent)); } + headerbar button.titlebutton:not(.appmenu).close:backdrop:hover, .titlebar button.titlebutton:not(.appmenu).close:backdrop:hover, headerbar.selection-mode button.titlebutton:not(.appmenu).close:backdrop:hover, button.titlebutton:not(.appmenu).close:backdrop:hover { + background-image: -gtk-gradient(radial, center center, 0, center center, 0.3571428571, to(#b0b0b0), to(transparent)); } + +menu menuitem:hover, +.menu menuitem:hover, +.context-menu menuitem:hover { + color: #3D3D3D; + background-color: rgba(61, 61, 61, 0.15); } + +menubar > menuitem:hover, +.menubar > menuitem:hover { + color: #3D3D3D; + background-color: rgba(61, 61, 61, 0.15); } + +.app-notification, +.app-notification.frame { + padding: 10px; + margin: 12px; + color: black; + border-radius: 4px; + background: none; + background-color: #FAFAFA; + border: 1px solid #c4c4c4; + box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); + text-shadow: none; } + .app-notification button.text-button, .app-notification button.image-button, .app-notification button, .app-notification button:dir(ltr).text-button, .app-notification button:dir(ltr).image-button, .app-notification button:dir(ltr), .app-notification button:dir(rtl).text-button, .app-notification button:dir(rtl).image-button, .app-notification button:dir(rtl), + .app-notification.frame button.text-button, + .app-notification.frame button.image-button, + .app-notification.frame button, + .app-notification.frame button:dir(ltr).text-button, + .app-notification.frame button:dir(ltr).image-button, + .app-notification.frame button:dir(ltr), + .app-notification.frame button:dir(rtl).text-button, + .app-notification.frame button:dir(rtl).image-button, + .app-notification.frame button:dir(rtl) { + color: #3D3D3D; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #c4c4c4; + background-image: image(#fcfcfc); + text-shadow: 0 1px rgba(255, 255, 255, 0.769231); + -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); + box-shadow: 0 1px rgba(0, 0, 0, 0.05); } + .app-notification button.text-button.flat, .app-notification button.image-button.flat, .app-notification button.flat, .app-notification button:dir(ltr).text-button.flat, .app-notification button:dir(ltr).image-button.flat, .app-notification button:dir(ltr).flat, .app-notification button:dir(rtl).text-button.flat, .app-notification button:dir(rtl).image-button.flat, .app-notification button:dir(rtl).flat, + .app-notification.frame button.text-button.flat, + .app-notification.frame button.image-button.flat, + .app-notification.frame button.flat, + .app-notification.frame button:dir(ltr).text-button.flat, + .app-notification.frame button:dir(ltr).image-button.flat, + .app-notification.frame button:dir(ltr).flat, + .app-notification.frame button:dir(rtl).text-button.flat, + .app-notification.frame button:dir(rtl).image-button.flat, + .app-notification.frame button:dir(rtl).flat { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + text-shadow: none; + -gtk-icon-shadow: none; } + .app-notification button.text-button:hover, .app-notification button.image-button:hover, .app-notification button:hover, .app-notification button:dir(ltr).text-button:hover, .app-notification button:dir(ltr).image-button:hover, .app-notification button:dir(ltr):hover, .app-notification button:dir(rtl).text-button:hover, .app-notification button:dir(rtl).image-button:hover, .app-notification button:dir(rtl):hover, + .app-notification.frame button.text-button:hover, + .app-notification.frame button.image-button:hover, + .app-notification.frame button:hover, + .app-notification.frame button:dir(ltr).text-button:hover, + .app-notification.frame button:dir(ltr).image-button:hover, + .app-notification.frame button:dir(ltr):hover, + .app-notification.frame button:dir(rtl).text-button:hover, + .app-notification.frame button:dir(rtl).image-button:hover, + .app-notification.frame button:dir(rtl):hover { + color: #3D3D3D; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #c4c4c4; + border-bottom-color: #bababa; + text-shadow: 0 1px rgba(255, 255, 255, 0.769231); + -gtk-icon-shadow: 0 1px rgba(255, 255, 255, 0.769231); + box-shadow: inset 0 1px white, 0 1px 2px rgba(0, 0, 0, 0.07); + box-shadow: 0 1px rgba(0, 0, 0, 0.15); + background-image: image(white); } + .app-notification button.text-button:active, .app-notification button.image-button:active, .app-notification button:active, .app-notification button:dir(ltr).text-button:active, .app-notification button:dir(ltr).image-button:active, .app-notification button:dir(ltr):active, .app-notification button:dir(rtl).text-button:active, .app-notification button:dir(rtl).image-button:active, .app-notification button:dir(rtl):active, + .app-notification.frame button.text-button:active, + .app-notification.frame button.image-button:active, + .app-notification.frame button:active, + .app-notification.frame button:dir(ltr).text-button:active, + .app-notification.frame button:dir(ltr).image-button:active, + .app-notification.frame button:dir(ltr):active, + .app-notification.frame button:dir(rtl).text-button:active, + .app-notification.frame button:dir(rtl).image-button:active, + .app-notification.frame button:dir(rtl):active { + color: #3D3D3D; + outline-color: rgba(239, 134, 97, 0.7); + border-color: #c4c4c4; + background-image: image(lightgray); + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + text-shadow: none; + -gtk-icon-shadow: none; } + .app-notification button.text-button:backdrop, .app-notification button.image-button:backdrop, .app-notification button:backdrop, .app-notification button:dir(ltr).text-button:backdrop, .app-notification button:dir(ltr).image-button:backdrop, .app-notification button:dir(ltr):backdrop, .app-notification button:dir(rtl).text-button:backdrop, .app-notification button:dir(rtl).image-button:backdrop, .app-notification button:dir(rtl):backdrop, + .app-notification.frame button.text-button:backdrop, + .app-notification.frame button.image-button:backdrop, + .app-notification.frame button:backdrop, + .app-notification.frame button:dir(ltr).text-button:backdrop, + .app-notification.frame button:dir(ltr).image-button:backdrop, + .app-notification.frame button:dir(ltr):backdrop, + .app-notification.frame button:dir(rtl).text-button:backdrop, + .app-notification.frame button:dir(rtl).image-button:backdrop, + .app-notification.frame button:dir(rtl):backdrop { + color: #626262; + border-color: #cecece; + background-image: image(#F7F7F7); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + .app-notification button.text-button:backdrop.flat, .app-notification button.image-button:backdrop.flat, .app-notification button:backdrop.flat, .app-notification button:dir(ltr).text-button:backdrop.flat, .app-notification button:dir(ltr).image-button:backdrop.flat, .app-notification button:dir(ltr):backdrop.flat, .app-notification button:dir(rtl).text-button:backdrop.flat, .app-notification button:dir(rtl).image-button:backdrop.flat, .app-notification button:dir(rtl):backdrop.flat, + .app-notification.frame button.text-button:backdrop.flat, + .app-notification.frame button.image-button:backdrop.flat, + .app-notification.frame button:backdrop.flat, + .app-notification.frame button:dir(ltr).text-button:backdrop.flat, + .app-notification.frame button:dir(ltr).image-button:backdrop.flat, + .app-notification.frame button:dir(ltr):backdrop.flat, + .app-notification.frame button:dir(rtl).text-button:backdrop.flat, + .app-notification.frame button:dir(rtl).image-button:backdrop.flat, + .app-notification.frame button:dir(rtl):backdrop.flat { + border-color: transparent; + background-color: transparent; + background-image: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); + text-shadow: none; + -gtk-icon-shadow: none; } + .app-notification button.text-button:disabled, .app-notification button.image-button:disabled, .app-notification button:disabled, .app-notification button:dir(ltr).text-button:disabled, .app-notification button:dir(ltr).image-button:disabled, .app-notification button:dir(ltr):disabled, .app-notification button:dir(rtl).text-button:disabled, .app-notification button:dir(rtl).image-button:disabled, .app-notification button:dir(rtl):disabled, + .app-notification.frame button.text-button:disabled, + .app-notification.frame button.image-button:disabled, + .app-notification.frame button:disabled, + .app-notification.frame button:dir(ltr).text-button:disabled, + .app-notification.frame button:dir(ltr).image-button:disabled, + .app-notification.frame button:dir(ltr):disabled, + .app-notification.frame button:dir(rtl).text-button:disabled, + .app-notification.frame button:dir(rtl).image-button:disabled, + .app-notification.frame button:dir(rtl):disabled { + color: #9a9a9a; + border-color: #c4c4c4; + background-image: image(#fafafa); + text-shadow: none; + -gtk-icon-shadow: none; + box-shadow: inset 0 1px rgba(255, 255, 255, 0); } + .app-notification:backdrop, + .app-notification.frame:backdrop { + background-color: #F7F7F7; + color: #323232; + box-shadow: none; + transition: 200ms ease-out; } + .app-notification border, + .app-notification.frame border { + border: none; } + +*:not(button) { + outline-color: rgba(239, 134, 97, 0.7); + outline-style: solid; + outline-offset: -2px; + outline-width: 2px; + -gtk-outline-radius: 4px; } + :selected *:not(button) { + outline-color: rgba(255, 255, 255, 0.7); } + +button { + outline-color: rgba(239, 134, 97, 0.7); + outline-style: solid; + outline-offset: -2px; + outline-width: 2px; + -gtk-outline-radius: 4px; } + button.suggested-action, button.suggested-action:hover, button.suggested-action:active, button.destructive-action, button.destructive-action:hover, button.destructive-action:active { + outline-color: rgba(255, 255, 255, 0.7); } + +switch slider, switch:hover slider { + outline-color: transparent; } + +switch:focus { + box-shadow: 0 0 0 3px #f9cdbe; } + +checkbutton, +radiobutton { + outline-color: rgba(239, 134, 97, 0.7); + outline-offset: 1px; + outline-width: 2px; } + row:selected checkbutton, treeview:selected checkbutton, row:selected radiobutton, treeview:selected radiobutton { + outline-color: rgba(255, 255, 255, 0.7); } + +treeview { + outline-color: rgba(239, 134, 97, 0.7); + -gtk-outline-radius: 0px; } + treeview:selected { + outline-color: rgba(255, 255, 255, 0.7); } + +notebook > header, notebook > header:backdrop { + background: transparent; } + +notebook > header tabs, notebook > header tabs.right, notebook > header tabs.left, notebook > header tabs.top, notebook > header tabs.bottom, notebook > header tabs:hover, notebook > header tabs:hover.right, notebook > header tabs:hover.left, notebook > header tabs:hover.top, notebook > header tabs:hover.bottom, notebook > header tabs:backdrop, notebook > header tabs:backdrop.right, notebook > header tabs:backdrop.left, notebook > header tabs:backdrop.top, notebook > header tabs:backdrop.bottom { + background-color: transparent; } + notebook > header tabs tab, notebook > header tabs.right tab, notebook > header tabs.left tab, notebook > header tabs.top tab, notebook > header tabs.bottom tab, notebook > header tabs:hover tab, notebook > header tabs:hover.right tab, notebook > header tabs:hover.left tab, notebook > header tabs:hover.top tab, notebook > header tabs:hover.bottom tab, notebook > header tabs:backdrop tab, notebook > header tabs:backdrop.right tab, notebook > header tabs:backdrop.left tab, notebook > header tabs:backdrop.top tab, notebook > header tabs:backdrop.bottom tab { + outline-width: 1px; + outline-offset: -2px; } + notebook > header tabs tab, notebook > header tabs tab:hover, notebook > header tabs tab:active, notebook > header tabs tab:checked, notebook > header tabs tab:checked:hover, notebook > header tabs tab:checked:active, notebook > header tabs tab:backdrop, notebook > header tabs tab:backdrop:hover, notebook > header tabs tab:backdrop:active, notebook > header tabs tab:backdrop:checked, notebook > header tabs tab:backdrop:checked:hover, notebook > header tabs tab:backdrop:checked:active, notebook > header tabs tab:dir(ltr), notebook > header tabs tab:dir(ltr):hover, notebook > header tabs tab:dir(ltr):active, notebook > header tabs tab:dir(ltr):checked, notebook > header tabs tab:dir(ltr):checked:hover, notebook > header tabs tab:dir(ltr):checked:active, notebook > header tabs tab:dir(ltr):backdrop, notebook > header tabs tab:dir(ltr):backdrop:hover, notebook > header tabs tab:dir(ltr):backdrop:active, notebook > header tabs tab:dir(ltr):backdrop:checked, notebook > header tabs tab:dir(ltr):backdrop:checked:hover, notebook > header tabs tab:dir(ltr):backdrop:checked:active, notebook > header tabs tab:dir(rtl), notebook > header tabs tab:dir(rtl):hover, notebook > header tabs tab:dir(rtl):active, notebook > header tabs tab:dir(rtl):checked, notebook > header tabs tab:dir(rtl):checked:hover, notebook > header tabs tab:dir(rtl):checked:active, notebook > header tabs tab:dir(rtl):backdrop, notebook > header tabs tab:dir(rtl):backdrop:hover, notebook > header tabs tab:dir(rtl):backdrop:active, notebook > header tabs tab:dir(rtl):backdrop:checked, notebook > header tabs tab:dir(rtl):backdrop:checked:hover, notebook > header tabs tab:dir(rtl):backdrop:checked:active, notebook > header tabs.right tab, notebook > header tabs.right tab:hover, notebook > header tabs.right tab:active, notebook > header tabs.right tab:checked, notebook > header tabs.right tab:checked:hover, notebook > header tabs.right tab:checked:active, notebook > header tabs.right tab:backdrop, notebook > header tabs.right tab:backdrop:hover, notebook > header tabs.right tab:backdrop:active, notebook > header tabs.right tab:backdrop:checked, notebook > header tabs.right tab:backdrop:checked:hover, notebook > header tabs.right tab:backdrop:checked:active, notebook > header tabs.right tab:dir(ltr), notebook > header tabs.right tab:dir(ltr):hover, notebook > header tabs.right tab:dir(ltr):active, notebook > header tabs.right tab:dir(ltr):checked, notebook > header tabs.right tab:dir(ltr):checked:hover, notebook > header tabs.right tab:dir(ltr):checked:active, notebook > header tabs.right tab:dir(ltr):backdrop, notebook > header tabs.right tab:dir(ltr):backdrop:hover, notebook > header tabs.right tab:dir(ltr):backdrop:active, notebook > header tabs.right tab:dir(ltr):backdrop:checked, notebook > header tabs.right tab:dir(ltr):backdrop:checked:hover, notebook > header tabs.right tab:dir(ltr):backdrop:checked:active, notebook > header tabs.right tab:dir(rtl), notebook > header tabs.right tab:dir(rtl):hover, notebook > header tabs.right tab:dir(rtl):active, notebook > header tabs.right tab:dir(rtl):checked, notebook > header tabs.right tab:dir(rtl):checked:hover, notebook > header tabs.right tab:dir(rtl):checked:active, notebook > header tabs.right tab:dir(rtl):backdrop, notebook > header tabs.right tab:dir(rtl):backdrop:hover, notebook > header tabs.right tab:dir(rtl):backdrop:active, notebook > header tabs.right tab:dir(rtl):backdrop:checked, notebook > header tabs.right tab:dir(rtl):backdrop:checked:hover, notebook > header tabs.right tab:dir(rtl):backdrop:checked:active, notebook > header tabs.left tab, notebook > header tabs.left tab:hover, notebook > header tabs.left tab:active, notebook > header tabs.left tab:checked, notebook > header tabs.left tab:checked:hover, notebook > header tabs.left tab:checked:active, notebook > header tabs.left tab:backdrop, notebook > header tabs.left tab:backdrop:hover, notebook > header tabs.left tab:backdrop:active, notebook > header tabs.left tab:backdrop:checked, notebook > header tabs.left tab:backdrop:checked:hover, notebook > header tabs.left tab:backdrop:checked:active, notebook > header tabs.left tab:dir(ltr), notebook > header tabs.left tab:dir(ltr):hover, notebook > header tabs.left tab:dir(ltr):active, notebook > header tabs.left tab:dir(ltr):checked, notebook > header tabs.left tab:dir(ltr):checked:hover, notebook > header tabs.left tab:dir(ltr):checked:active, notebook > header tabs.left tab:dir(ltr):backdrop, notebook > header tabs.left tab:dir(ltr):backdrop:hover, notebook > header tabs.left tab:dir(ltr):backdrop:active, notebook > header tabs.left tab:dir(ltr):backdrop:checked, notebook > header tabs.left tab:dir(ltr):backdrop:checked:hover, notebook > header tabs.left tab:dir(ltr):backdrop:checked:active, notebook > header tabs.left tab:dir(rtl), notebook > header tabs.left tab:dir(rtl):hover, notebook > header tabs.left tab:dir(rtl):active, notebook > header tabs.left tab:dir(rtl):checked, notebook > header tabs.left tab:dir(rtl):checked:hover, notebook > header tabs.left tab:dir(rtl):checked:active, notebook > header tabs.left tab:dir(rtl):backdrop, notebook > header tabs.left tab:dir(rtl):backdrop:hover, notebook > header tabs.left tab:dir(rtl):backdrop:active, notebook > header tabs.left tab:dir(rtl):backdrop:checked, notebook > header tabs.left tab:dir(rtl):backdrop:checked:hover, notebook > header tabs.left tab:dir(rtl):backdrop:checked:active, notebook > header tabs.top tab, notebook > header tabs.top tab:hover, notebook > header tabs.top tab:active, notebook > header tabs.top tab:checked, notebook > header tabs.top tab:checked:hover, notebook > header tabs.top tab:checked:active, notebook > header tabs.top tab:backdrop, notebook > header tabs.top tab:backdrop:hover, notebook > header tabs.top tab:backdrop:active, notebook > header tabs.top tab:backdrop:checked, notebook > header tabs.top tab:backdrop:checked:hover, notebook > header tabs.top tab:backdrop:checked:active, notebook > header tabs.top tab:dir(ltr), notebook > header tabs.top tab:dir(ltr):hover, notebook > header tabs.top tab:dir(ltr):active, notebook > header tabs.top tab:dir(ltr):checked, notebook > header tabs.top tab:dir(ltr):checked:hover, notebook > header tabs.top tab:dir(ltr):checked:active, notebook > header tabs.top tab:dir(ltr):backdrop, notebook > header tabs.top tab:dir(ltr):backdrop:hover, notebook > header tabs.top tab:dir(ltr):backdrop:active, notebook > header tabs.top tab:dir(ltr):backdrop:checked, notebook > header tabs.top tab:dir(ltr):backdrop:checked:hover, notebook > header tabs.top tab:dir(ltr):backdrop:checked:active, notebook > header tabs.top tab:dir(rtl), notebook > header tabs.top tab:dir(rtl):hover, notebook > header tabs.top tab:dir(rtl):active, notebook > header tabs.top tab:dir(rtl):checked, notebook > header tabs.top tab:dir(rtl):checked:hover, notebook > header tabs.top tab:dir(rtl):checked:active, notebook > header tabs.top tab:dir(rtl):backdrop, notebook > header tabs.top tab:dir(rtl):backdrop:hover, notebook > header tabs.top tab:dir(rtl):backdrop:active, notebook > header tabs.top tab:dir(rtl):backdrop:checked, notebook > header tabs.top tab:dir(rtl):backdrop:checked:hover, notebook > header tabs.top tab:dir(rtl):backdrop:checked:active, notebook > header tabs.bottom tab, notebook > header tabs.bottom tab:hover, notebook > header tabs.bottom tab:active, notebook > header tabs.bottom tab:checked, notebook > header tabs.bottom tab:checked:hover, notebook > header tabs.bottom tab:checked:active, notebook > header tabs.bottom tab:backdrop, notebook > header tabs.bottom tab:backdrop:hover, notebook > header tabs.bottom tab:backdrop:active, notebook > header tabs.bottom tab:backdrop:checked, notebook > header tabs.bottom tab:backdrop:checked:hover, notebook > header tabs.bottom tab:backdrop:checked:active, notebook > header tabs.bottom tab:dir(ltr), notebook > header tabs.bottom tab:dir(ltr):hover, notebook > header tabs.bottom tab:dir(ltr):active, notebook > header tabs.bottom tab:dir(ltr):checked, notebook > header tabs.bottom tab:dir(ltr):checked:hover, notebook > header tabs.bottom tab:dir(ltr):checked:active, notebook > header tabs.bottom tab:dir(ltr):backdrop, notebook > header tabs.bottom tab:dir(ltr):backdrop:hover, notebook > header tabs.bottom tab:dir(ltr):backdrop:active, notebook > header tabs.bottom tab:dir(ltr):backdrop:checked, notebook > header tabs.bottom tab:dir(ltr):backdrop:checked:hover, notebook > header tabs.bottom tab:dir(ltr):backdrop:checked:active, notebook > header tabs.bottom tab:dir(rtl), notebook > header tabs.bottom tab:dir(rtl):hover, notebook > header tabs.bottom tab:dir(rtl):active, notebook > header tabs.bottom tab:dir(rtl):checked, notebook > header tabs.bottom tab:dir(rtl):checked:hover, notebook > header tabs.bottom tab:dir(rtl):checked:active, notebook > header tabs.bottom tab:dir(rtl):backdrop, notebook > header tabs.bottom tab:dir(rtl):backdrop:hover, notebook > header tabs.bottom tab:dir(rtl):backdrop:active, notebook > header tabs.bottom tab:dir(rtl):backdrop:checked, notebook > header tabs.bottom tab:dir(rtl):backdrop:checked:hover, notebook > header tabs.bottom tab:dir(rtl):backdrop:checked:active, notebook > header tabs:hover tab, notebook > header tabs:hover tab:hover, notebook > header tabs:hover tab:active, notebook > header tabs:hover tab:checked, notebook > header tabs:hover tab:checked:hover, notebook > header tabs:hover tab:checked:active, notebook > header tabs:hover tab:backdrop, notebook > header tabs:hover tab:backdrop:hover, notebook > header tabs:hover tab:backdrop:active, notebook > header tabs:hover tab:backdrop:checked, notebook > header tabs:hover tab:backdrop:checked:hover, notebook > header tabs:hover tab:backdrop:checked:active, notebook > header tabs:hover tab:dir(ltr), notebook > header tabs:hover tab:dir(ltr):hover, notebook > header tabs:hover tab:dir(ltr):active, notebook > header tabs:hover tab:dir(ltr):checked, notebook > header tabs:hover tab:dir(ltr):checked:hover, notebook > header tabs:hover tab:dir(ltr):checked:active, notebook > header tabs:hover tab:dir(ltr):backdrop, notebook > header tabs:hover tab:dir(ltr):backdrop:hover, notebook > header tabs:hover tab:dir(ltr):backdrop:active, notebook > header tabs:hover tab:dir(ltr):backdrop:checked, notebook > header tabs:hover tab:dir(ltr):backdrop:checked:hover, notebook > header tabs:hover tab:dir(ltr):backdrop:checked:active, notebook > header tabs:hover tab:dir(rtl), notebook > header tabs:hover tab:dir(rtl):hover, notebook > header tabs:hover tab:dir(rtl):active, notebook > header tabs:hover tab:dir(rtl):checked, notebook > header tabs:hover tab:dir(rtl):checked:hover, notebook > header tabs:hover tab:dir(rtl):checked:active, notebook > header tabs:hover tab:dir(rtl):backdrop, notebook > header tabs:hover tab:dir(rtl):backdrop:hover, notebook > header tabs:hover tab:dir(rtl):backdrop:active, notebook > header tabs:hover tab:dir(rtl):backdrop:checked, notebook > header tabs:hover tab:dir(rtl):backdrop:checked:hover, notebook > header tabs:hover tab:dir(rtl):backdrop:checked:active, notebook > header tabs:hover.right tab, notebook > header tabs:hover.right tab:hover, notebook > header tabs:hover.right tab:active, notebook > header tabs:hover.right tab:checked, notebook > header tabs:hover.right tab:checked:hover, notebook > header tabs:hover.right tab:checked:active, notebook > header tabs:hover.right tab:backdrop, notebook > header tabs:hover.right tab:backdrop:hover, notebook > header tabs:hover.right tab:backdrop:active, notebook > header tabs:hover.right tab:backdrop:checked, notebook > header tabs:hover.right tab:backdrop:checked:hover, notebook > header tabs:hover.right tab:backdrop:checked:active, notebook > header tabs:hover.right tab:dir(ltr), notebook > header tabs:hover.right tab:dir(ltr):hover, notebook > header tabs:hover.right tab:dir(ltr):active, notebook > header tabs:hover.right tab:dir(ltr):checked, notebook > header tabs:hover.right tab:dir(ltr):checked:hover, notebook > header tabs:hover.right tab:dir(ltr):checked:active, notebook > header tabs:hover.right tab:dir(ltr):backdrop, notebook > header tabs:hover.right tab:dir(ltr):backdrop:hover, notebook > header tabs:hover.right tab:dir(ltr):backdrop:active, notebook > header tabs:hover.right tab:dir(ltr):backdrop:checked, notebook > header tabs:hover.right tab:dir(ltr):backdrop:checked:hover, notebook > header tabs:hover.right tab:dir(ltr):backdrop:checked:active, notebook > header tabs:hover.right tab:dir(rtl), notebook > header tabs:hover.right tab:dir(rtl):hover, notebook > header tabs:hover.right tab:dir(rtl):active, notebook > header tabs:hover.right tab:dir(rtl):checked, notebook > header tabs:hover.right tab:dir(rtl):checked:hover, notebook > header tabs:hover.right tab:dir(rtl):checked:active, notebook > header tabs:hover.right tab:dir(rtl):backdrop, notebook > header tabs:hover.right tab:dir(rtl):backdrop:hover, notebook > header tabs:hover.right tab:dir(rtl):backdrop:active, notebook > header tabs:hover.right tab:dir(rtl):backdrop:checked, notebook > header tabs:hover.right tab:dir(rtl):backdrop:checked:hover, notebook > header tabs:hover.right tab:dir(rtl):backdrop:checked:active, notebook > header tabs:hover.left tab, notebook > header tabs:hover.left tab:hover, notebook > header tabs:hover.left tab:active, notebook > header tabs:hover.left tab:checked, notebook > header tabs:hover.left tab:checked:hover, notebook > header tabs:hover.left tab:checked:active, notebook > header tabs:hover.left tab:backdrop, notebook > header tabs:hover.left tab:backdrop:hover, notebook > header tabs:hover.left tab:backdrop:active, notebook > header tabs:hover.left tab:backdrop:checked, notebook > header tabs:hover.left tab:backdrop:checked:hover, notebook > header tabs:hover.left tab:backdrop:checked:active, notebook > header tabs:hover.left tab:dir(ltr), notebook > header tabs:hover.left tab:dir(ltr):hover, notebook > header tabs:hover.left tab:dir(ltr):active, notebook > header tabs:hover.left tab:dir(ltr):checked, notebook > header tabs:hover.left tab:dir(ltr):checked:hover, notebook > header tabs:hover.left tab:dir(ltr):checked:active, notebook > header tabs:hover.left tab:dir(ltr):backdrop, notebook > header tabs:hover.left tab:dir(ltr):backdrop:hover, notebook > header tabs:hover.left tab:dir(ltr):backdrop:active, notebook > header tabs:hover.left tab:dir(ltr):backdrop:checked, notebook > header tabs:hover.left tab:dir(ltr):backdrop:checked:hover, notebook > header tabs:hover.left tab:dir(ltr):backdrop:checked:active, notebook > header tabs:hover.left tab:dir(rtl), notebook > header tabs:hover.left tab:dir(rtl):hover, notebook > header tabs:hover.left tab:dir(rtl):active, notebook > header tabs:hover.left tab:dir(rtl):checked, notebook > header tabs:hover.left tab:dir(rtl):checked:hover, notebook > header tabs:hover.left tab:dir(rtl):checked:active, notebook > header tabs:hover.left tab:dir(rtl):backdrop, notebook > header tabs:hover.left tab:dir(rtl):backdrop:hover, notebook > header tabs:hover.left tab:dir(rtl):backdrop:active, notebook > header tabs:hover.left tab:dir(rtl):backdrop:checked, notebook > header tabs:hover.left tab:dir(rtl):backdrop:checked:hover, notebook > header tabs:hover.left tab:dir(rtl):backdrop:checked:active, notebook > header tabs:hover.top tab, notebook > header tabs:hover.top tab:hover, notebook > header tabs:hover.top tab:active, notebook > header tabs:hover.top tab:checked, notebook > header tabs:hover.top tab:checked:hover, notebook > header tabs:hover.top tab:checked:active, notebook > header tabs:hover.top tab:backdrop, notebook > header tabs:hover.top tab:backdrop:hover, notebook > header tabs:hover.top tab:backdrop:active, notebook > header tabs:hover.top tab:backdrop:checked, notebook > header tabs:hover.top tab:backdrop:checked:hover, notebook > header tabs:hover.top tab:backdrop:checked:active, notebook > header tabs:hover.top tab:dir(ltr), notebook > header tabs:hover.top tab:dir(ltr):hover, notebook > header tabs:hover.top tab:dir(ltr):active, notebook > header tabs:hover.top tab:dir(ltr):checked, notebook > header tabs:hover.top tab:dir(ltr):checked:hover, notebook > header tabs:hover.top tab:dir(ltr):checked:active, notebook > header tabs:hover.top tab:dir(ltr):backdrop, notebook > header tabs:hover.top tab:dir(ltr):backdrop:hover, notebook > header tabs:hover.top tab:dir(ltr):backdrop:active, notebook > header tabs:hover.top tab:dir(ltr):backdrop:checked, notebook > header tabs:hover.top tab:dir(ltr):backdrop:checked:hover, notebook > header tabs:hover.top tab:dir(ltr):backdrop:checked:active, notebook > header tabs:hover.top tab:dir(rtl), notebook > header tabs:hover.top tab:dir(rtl):hover, notebook > header tabs:hover.top tab:dir(rtl):active, notebook > header tabs:hover.top tab:dir(rtl):checked, notebook > header tabs:hover.top tab:dir(rtl):checked:hover, notebook > header tabs:hover.top tab:dir(rtl):checked:active, notebook > header tabs:hover.top tab:dir(rtl):backdrop, notebook > header tabs:hover.top tab:dir(rtl):backdrop:hover, notebook > header tabs:hover.top tab:dir(rtl):backdrop:active, notebook > header tabs:hover.top tab:dir(rtl):backdrop:checked, notebook > header tabs:hover.top tab:dir(rtl):backdrop:checked:hover, notebook > header tabs:hover.top tab:dir(rtl):backdrop:checked:active, notebook > header tabs:hover.bottom tab, notebook > header tabs:hover.bottom tab:hover, notebook > header tabs:hover.bottom tab:active, notebook > header tabs:hover.bottom tab:checked, notebook > header tabs:hover.bottom tab:checked:hover, notebook > header tabs:hover.bottom tab:checked:active, notebook > header tabs:hover.bottom tab:backdrop, notebook > header tabs:hover.bottom tab:backdrop:hover, notebook > header tabs:hover.bottom tab:backdrop:active, notebook > header tabs:hover.bottom tab:backdrop:checked, notebook > header tabs:hover.bottom tab:backdrop:checked:hover, notebook > header tabs:hover.bottom tab:backdrop:checked:active, notebook > header tabs:hover.bottom tab:dir(ltr), notebook > header tabs:hover.bottom tab:dir(ltr):hover, notebook > header tabs:hover.bottom tab:dir(ltr):active, notebook > header tabs:hover.bottom tab:dir(ltr):checked, notebook > header tabs:hover.bottom tab:dir(ltr):checked:hover, notebook > header tabs:hover.bottom tab:dir(ltr):checked:active, notebook > header tabs:hover.bottom tab:dir(ltr):backdrop, notebook > header tabs:hover.bottom tab:dir(ltr):backdrop:hover, notebook > header tabs:hover.bottom tab:dir(ltr):backdrop:active, notebook > header tabs:hover.bottom tab:dir(ltr):backdrop:checked, notebook > header tabs:hover.bottom tab:dir(ltr):backdrop:checked:hover, notebook > header tabs:hover.bottom tab:dir(ltr):backdrop:checked:active, notebook > header tabs:hover.bottom tab:dir(rtl), notebook > header tabs:hover.bottom tab:dir(rtl):hover, notebook > header tabs:hover.bottom tab:dir(rtl):active, notebook > header tabs:hover.bottom tab:dir(rtl):checked, notebook > header tabs:hover.bottom tab:dir(rtl):checked:hover, notebook > header tabs:hover.bottom tab:dir(rtl):checked:active, notebook > header tabs:hover.bottom tab:dir(rtl):backdrop, notebook > header tabs:hover.bottom tab:dir(rtl):backdrop:hover, notebook > header tabs:hover.bottom tab:dir(rtl):backdrop:active, notebook > header tabs:hover.bottom tab:dir(rtl):backdrop:checked, notebook > header tabs:hover.bottom tab:dir(rtl):backdrop:checked:hover, notebook > header tabs:hover.bottom tab:dir(rtl):backdrop:checked:active, notebook > header tabs:backdrop tab, notebook > header tabs:backdrop tab:hover, notebook > header tabs:backdrop tab:active, notebook > header tabs:backdrop tab:checked, notebook > header tabs:backdrop tab:checked:hover, notebook > header tabs:backdrop tab:checked:active, notebook > header tabs:backdrop tab:backdrop, notebook > header tabs:backdrop tab:backdrop:hover, notebook > header tabs:backdrop tab:backdrop:active, notebook > header tabs:backdrop tab:backdrop:checked, notebook > header tabs:backdrop tab:backdrop:checked:hover, notebook > header tabs:backdrop tab:backdrop:checked:active, notebook > header tabs:backdrop tab:dir(ltr), notebook > header tabs:backdrop tab:dir(ltr):hover, notebook > header tabs:backdrop tab:dir(ltr):active, notebook > header tabs:backdrop tab:dir(ltr):checked, notebook > header tabs:backdrop tab:dir(ltr):checked:hover, notebook > header tabs:backdrop tab:dir(ltr):checked:active, notebook > header tabs:backdrop tab:dir(ltr):backdrop, notebook > header tabs:backdrop tab:dir(ltr):backdrop:hover, notebook > header tabs:backdrop tab:dir(ltr):backdrop:active, notebook > header tabs:backdrop tab:dir(ltr):backdrop:checked, notebook > header tabs:backdrop tab:dir(ltr):backdrop:checked:hover, notebook > header tabs:backdrop tab:dir(ltr):backdrop:checked:active, notebook > header tabs:backdrop tab:dir(rtl), notebook > header tabs:backdrop tab:dir(rtl):hover, notebook > header tabs:backdrop tab:dir(rtl):active, notebook > header tabs:backdrop tab:dir(rtl):checked, notebook > header tabs:backdrop tab:dir(rtl):checked:hover, notebook > header tabs:backdrop tab:dir(rtl):checked:active, notebook > header tabs:backdrop tab:dir(rtl):backdrop, notebook > header tabs:backdrop tab:dir(rtl):backdrop:hover, notebook > header tabs:backdrop tab:dir(rtl):backdrop:active, notebook > header tabs:backdrop tab:dir(rtl):backdrop:checked, notebook > header tabs:backdrop tab:dir(rtl):backdrop:checked:hover, notebook > header tabs:backdrop tab:dir(rtl):backdrop:checked:active, notebook > header tabs:backdrop.right tab, notebook > header tabs:backdrop.right tab:hover, notebook > header tabs:backdrop.right tab:active, notebook > header tabs:backdrop.right tab:checked, notebook > header tabs:backdrop.right tab:checked:hover, notebook > header tabs:backdrop.right tab:checked:active, notebook > header tabs:backdrop.right tab:backdrop, notebook > header tabs:backdrop.right tab:backdrop:hover, notebook > header tabs:backdrop.right tab:backdrop:active, notebook > header tabs:backdrop.right tab:backdrop:checked, notebook > header tabs:backdrop.right tab:backdrop:checked:hover, notebook > header tabs:backdrop.right tab:backdrop:checked:active, notebook > header tabs:backdrop.right tab:dir(ltr), notebook > header tabs:backdrop.right tab:dir(ltr):hover, notebook > header tabs:backdrop.right tab:dir(ltr):active, notebook > header tabs:backdrop.right tab:dir(ltr):checked, notebook > header tabs:backdrop.right tab:dir(ltr):checked:hover, notebook > header tabs:backdrop.right tab:dir(ltr):checked:active, notebook > header tabs:backdrop.right tab:dir(ltr):backdrop, notebook > header tabs:backdrop.right tab:dir(ltr):backdrop:hover, notebook > header tabs:backdrop.right tab:dir(ltr):backdrop:active, notebook > header tabs:backdrop.right tab:dir(ltr):backdrop:checked, notebook > header tabs:backdrop.right tab:dir(ltr):backdrop:checked:hover, notebook > header tabs:backdrop.right tab:dir(ltr):backdrop:checked:active, notebook > header tabs:backdrop.right tab:dir(rtl), notebook > header tabs:backdrop.right tab:dir(rtl):hover, notebook > header tabs:backdrop.right tab:dir(rtl):active, notebook > header tabs:backdrop.right tab:dir(rtl):checked, notebook > header tabs:backdrop.right tab:dir(rtl):checked:hover, notebook > header tabs:backdrop.right tab:dir(rtl):checked:active, notebook > header tabs:backdrop.right tab:dir(rtl):backdrop, notebook > header tabs:backdrop.right tab:dir(rtl):backdrop:hover, notebook > header tabs:backdrop.right tab:dir(rtl):backdrop:active, notebook > header tabs:backdrop.right tab:dir(rtl):backdrop:checked, notebook > header tabs:backdrop.right tab:dir(rtl):backdrop:checked:hover, notebook > header tabs:backdrop.right tab:dir(rtl):backdrop:checked:active, notebook > header tabs:backdrop.left tab, notebook > header tabs:backdrop.left tab:hover, notebook > header tabs:backdrop.left tab:active, notebook > header tabs:backdrop.left tab:checked, notebook > header tabs:backdrop.left tab:checked:hover, notebook > header tabs:backdrop.left tab:checked:active, notebook > header tabs:backdrop.left tab:backdrop, notebook > header tabs:backdrop.left tab:backdrop:hover, notebook > header tabs:backdrop.left tab:backdrop:active, notebook > header tabs:backdrop.left tab:backdrop:checked, notebook > header tabs:backdrop.left tab:backdrop:checked:hover, notebook > header tabs:backdrop.left tab:backdrop:checked:active, notebook > header tabs:backdrop.left tab:dir(ltr), notebook > header tabs:backdrop.left tab:dir(ltr):hover, notebook > header tabs:backdrop.left tab:dir(ltr):active, notebook > header tabs:backdrop.left tab:dir(ltr):checked, notebook > header tabs:backdrop.left tab:dir(ltr):checked:hover, notebook > header tabs:backdrop.left tab:dir(ltr):checked:active, notebook > header tabs:backdrop.left tab:dir(ltr):backdrop, notebook > header tabs:backdrop.left tab:dir(ltr):backdrop:hover, notebook > header tabs:backdrop.left tab:dir(ltr):backdrop:active, notebook > header tabs:backdrop.left tab:dir(ltr):backdrop:checked, notebook > header tabs:backdrop.left tab:dir(ltr):backdrop:checked:hover, notebook > header tabs:backdrop.left tab:dir(ltr):backdrop:checked:active, notebook > header tabs:backdrop.left tab:dir(rtl), notebook > header tabs:backdrop.left tab:dir(rtl):hover, notebook > header tabs:backdrop.left tab:dir(rtl):active, notebook > header tabs:backdrop.left tab:dir(rtl):checked, notebook > header tabs:backdrop.left tab:dir(rtl):checked:hover, notebook > header tabs:backdrop.left tab:dir(rtl):checked:active, notebook > header tabs:backdrop.left tab:dir(rtl):backdrop, notebook > header tabs:backdrop.left tab:dir(rtl):backdrop:hover, notebook > header tabs:backdrop.left tab:dir(rtl):backdrop:active, notebook > header tabs:backdrop.left tab:dir(rtl):backdrop:checked, notebook > header tabs:backdrop.left tab:dir(rtl):backdrop:checked:hover, notebook > header tabs:backdrop.left tab:dir(rtl):backdrop:checked:active, notebook > header tabs:backdrop.top tab, notebook > header tabs:backdrop.top tab:hover, notebook > header tabs:backdrop.top tab:active, notebook > header tabs:backdrop.top tab:checked, notebook > header tabs:backdrop.top tab:checked:hover, notebook > header tabs:backdrop.top tab:checked:active, notebook > header tabs:backdrop.top tab:backdrop, notebook > header tabs:backdrop.top tab:backdrop:hover, notebook > header tabs:backdrop.top tab:backdrop:active, notebook > header tabs:backdrop.top tab:backdrop:checked, notebook > header tabs:backdrop.top tab:backdrop:checked:hover, notebook > header tabs:backdrop.top tab:backdrop:checked:active, notebook > header tabs:backdrop.top tab:dir(ltr), notebook > header tabs:backdrop.top tab:dir(ltr):hover, notebook > header tabs:backdrop.top tab:dir(ltr):active, notebook > header tabs:backdrop.top tab:dir(ltr):checked, notebook > header tabs:backdrop.top tab:dir(ltr):checked:hover, notebook > header tabs:backdrop.top tab:dir(ltr):checked:active, notebook > header tabs:backdrop.top tab:dir(ltr):backdrop, notebook > header tabs:backdrop.top tab:dir(ltr):backdrop:hover, notebook > header tabs:backdrop.top tab:dir(ltr):backdrop:active, notebook > header tabs:backdrop.top tab:dir(ltr):backdrop:checked, notebook > header tabs:backdrop.top tab:dir(ltr):backdrop:checked:hover, notebook > header tabs:backdrop.top tab:dir(ltr):backdrop:checked:active, notebook > header tabs:backdrop.top tab:dir(rtl), notebook > header tabs:backdrop.top tab:dir(rtl):hover, notebook > header tabs:backdrop.top tab:dir(rtl):active, notebook > header tabs:backdrop.top tab:dir(rtl):checked, notebook > header tabs:backdrop.top tab:dir(rtl):checked:hover, notebook > header tabs:backdrop.top tab:dir(rtl):checked:active, notebook > header tabs:backdrop.top tab:dir(rtl):backdrop, notebook > header tabs:backdrop.top tab:dir(rtl):backdrop:hover, notebook > header tabs:backdrop.top tab:dir(rtl):backdrop:active, notebook > header tabs:backdrop.top tab:dir(rtl):backdrop:checked, notebook > header tabs:backdrop.top tab:dir(rtl):backdrop:checked:hover, notebook > header tabs:backdrop.top tab:dir(rtl):backdrop:checked:active, notebook > header tabs:backdrop.bottom tab, notebook > header tabs:backdrop.bottom tab:hover, notebook > header tabs:backdrop.bottom tab:active, notebook > header tabs:backdrop.bottom tab:checked, notebook > header tabs:backdrop.bottom tab:checked:hover, notebook > header tabs:backdrop.bottom tab:checked:active, notebook > header tabs:backdrop.bottom tab:backdrop, notebook > header tabs:backdrop.bottom tab:backdrop:hover, notebook > header tabs:backdrop.bottom tab:backdrop:active, notebook > header tabs:backdrop.bottom tab:backdrop:checked, notebook > header tabs:backdrop.bottom tab:backdrop:checked:hover, notebook > header tabs:backdrop.bottom tab:backdrop:checked:active, notebook > header tabs:backdrop.bottom tab:dir(ltr), notebook > header tabs:backdrop.bottom tab:dir(ltr):hover, notebook > header tabs:backdrop.bottom tab:dir(ltr):active, notebook > header tabs:backdrop.bottom tab:dir(ltr):checked, notebook > header tabs:backdrop.bottom tab:dir(ltr):checked:hover, notebook > header tabs:backdrop.bottom tab:dir(ltr):checked:active, notebook > header tabs:backdrop.bottom tab:dir(ltr):backdrop, notebook > header tabs:backdrop.bottom tab:dir(ltr):backdrop:hover, notebook > header tabs:backdrop.bottom tab:dir(ltr):backdrop:active, notebook > header tabs:backdrop.bottom tab:dir(ltr):backdrop:checked, notebook > header tabs:backdrop.bottom tab:dir(ltr):backdrop:checked:hover, notebook > header tabs:backdrop.bottom tab:dir(ltr):backdrop:checked:active, notebook > header tabs:backdrop.bottom tab:dir(rtl), notebook > header tabs:backdrop.bottom tab:dir(rtl):hover, notebook > header tabs:backdrop.bottom tab:dir(rtl):active, notebook > header tabs:backdrop.bottom tab:dir(rtl):checked, notebook > header tabs:backdrop.bottom tab:dir(rtl):checked:hover, notebook > header tabs:backdrop.bottom tab:dir(rtl):checked:active, notebook > header tabs:backdrop.bottom tab:dir(rtl):backdrop, notebook > header tabs:backdrop.bottom tab:dir(rtl):backdrop:hover, notebook > header tabs:backdrop.bottom tab:dir(rtl):backdrop:active, notebook > header tabs:backdrop.bottom tab:dir(rtl):backdrop:checked, notebook > header tabs:backdrop.bottom tab:dir(rtl):backdrop:checked:hover, notebook > header tabs:backdrop.bottom tab:dir(rtl):backdrop:checked:active { + background-color: transparent; + border-color: transparent; } + notebook > header tabs tab:hover:not(:checked):not(:backdrop), notebook > header tabs tab:backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs tab:dir(ltr):hover:not(:checked):not(:backdrop), notebook > header tabs tab:dir(ltr):backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs tab:dir(rtl):hover:not(:checked):not(:backdrop), notebook > header tabs tab:dir(rtl):backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs.right tab:hover:not(:checked):not(:backdrop), notebook > header tabs.right tab:backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs.right tab:dir(ltr):hover:not(:checked):not(:backdrop), notebook > header tabs.right tab:dir(ltr):backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs.right tab:dir(rtl):hover:not(:checked):not(:backdrop), notebook > header tabs.right tab:dir(rtl):backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs.left tab:hover:not(:checked):not(:backdrop), notebook > header tabs.left tab:backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs.left tab:dir(ltr):hover:not(:checked):not(:backdrop), notebook > header tabs.left tab:dir(ltr):backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs.left tab:dir(rtl):hover:not(:checked):not(:backdrop), notebook > header tabs.left tab:dir(rtl):backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs.top tab:hover:not(:checked):not(:backdrop), notebook > header tabs.top tab:backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs.top tab:dir(ltr):hover:not(:checked):not(:backdrop), notebook > header tabs.top tab:dir(ltr):backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs.top tab:dir(rtl):hover:not(:checked):not(:backdrop), notebook > header tabs.top tab:dir(rtl):backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs.bottom tab:hover:not(:checked):not(:backdrop), notebook > header tabs.bottom tab:backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs.bottom tab:dir(ltr):hover:not(:checked):not(:backdrop), notebook > header tabs.bottom tab:dir(ltr):backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs.bottom tab:dir(rtl):hover:not(:checked):not(:backdrop), notebook > header tabs.bottom tab:dir(rtl):backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs:hover tab:hover:not(:checked):not(:backdrop), notebook > header tabs:hover tab:backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs:hover tab:dir(ltr):hover:not(:checked):not(:backdrop), notebook > header tabs:hover tab:dir(ltr):backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs:hover tab:dir(rtl):hover:not(:checked):not(:backdrop), notebook > header tabs:hover tab:dir(rtl):backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs:hover.right tab:hover:not(:checked):not(:backdrop), notebook > header tabs:hover.right tab:backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs:hover.right tab:dir(ltr):hover:not(:checked):not(:backdrop), notebook > header tabs:hover.right tab:dir(ltr):backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs:hover.right tab:dir(rtl):hover:not(:checked):not(:backdrop), notebook > header tabs:hover.right tab:dir(rtl):backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs:hover.left tab:hover:not(:checked):not(:backdrop), notebook > header tabs:hover.left tab:backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs:hover.left tab:dir(ltr):hover:not(:checked):not(:backdrop), notebook > header tabs:hover.left tab:dir(ltr):backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs:hover.left tab:dir(rtl):hover:not(:checked):not(:backdrop), notebook > header tabs:hover.left tab:dir(rtl):backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs:hover.top tab:hover:not(:checked):not(:backdrop), notebook > header tabs:hover.top tab:backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs:hover.top tab:dir(ltr):hover:not(:checked):not(:backdrop), notebook > header tabs:hover.top tab:dir(ltr):backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs:hover.top tab:dir(rtl):hover:not(:checked):not(:backdrop), notebook > header tabs:hover.top tab:dir(rtl):backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs:hover.bottom tab:hover:not(:checked):not(:backdrop), notebook > header tabs:hover.bottom tab:backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs:hover.bottom tab:dir(ltr):hover:not(:checked):not(:backdrop), notebook > header tabs:hover.bottom tab:dir(ltr):backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs:hover.bottom tab:dir(rtl):hover:not(:checked):not(:backdrop), notebook > header tabs:hover.bottom tab:dir(rtl):backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs:backdrop tab:hover:not(:checked):not(:backdrop), notebook > header tabs:backdrop tab:backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs:backdrop tab:dir(ltr):hover:not(:checked):not(:backdrop), notebook > header tabs:backdrop tab:dir(ltr):backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs:backdrop tab:dir(rtl):hover:not(:checked):not(:backdrop), notebook > header tabs:backdrop tab:dir(rtl):backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs:backdrop.right tab:hover:not(:checked):not(:backdrop), notebook > header tabs:backdrop.right tab:backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs:backdrop.right tab:dir(ltr):hover:not(:checked):not(:backdrop), notebook > header tabs:backdrop.right tab:dir(ltr):backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs:backdrop.right tab:dir(rtl):hover:not(:checked):not(:backdrop), notebook > header tabs:backdrop.right tab:dir(rtl):backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs:backdrop.left tab:hover:not(:checked):not(:backdrop), notebook > header tabs:backdrop.left tab:backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs:backdrop.left tab:dir(ltr):hover:not(:checked):not(:backdrop), notebook > header tabs:backdrop.left tab:dir(ltr):backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs:backdrop.left tab:dir(rtl):hover:not(:checked):not(:backdrop), notebook > header tabs:backdrop.left tab:dir(rtl):backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs:backdrop.top tab:hover:not(:checked):not(:backdrop), notebook > header tabs:backdrop.top tab:backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs:backdrop.top tab:dir(ltr):hover:not(:checked):not(:backdrop), notebook > header tabs:backdrop.top tab:dir(ltr):backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs:backdrop.top tab:dir(rtl):hover:not(:checked):not(:backdrop), notebook > header tabs:backdrop.top tab:dir(rtl):backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs:backdrop.bottom tab:hover:not(:checked):not(:backdrop), notebook > header tabs:backdrop.bottom tab:backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs:backdrop.bottom tab:dir(ltr):hover:not(:checked):not(:backdrop), notebook > header tabs:backdrop.bottom tab:dir(ltr):backdrop:hover:not(:checked):not(:backdrop), notebook > header tabs:backdrop.bottom tab:dir(rtl):hover:not(:checked):not(:backdrop), notebook > header tabs:backdrop.bottom tab:dir(rtl):backdrop:hover:not(:checked):not(:backdrop) { + color: #9a9a9a; } + +scrolledwindow undershoot.top { + background-color: transparent; + padding-top: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center top; + border: none; + box-shadow: inset 0 2px 0 0 rgba(204, 204, 204, 0.2), inset 0 1px 0 0 rgba(153, 153, 153, 0.2); } + +scrolledwindow undershoot.bottom { + background-color: transparent; + padding-bottom: 1px; + background-size: 10px 1px; + background-repeat: repeat-x; + background-origin: content-box; + background-position: center bottom; + border: none; + box-shadow: inset 0 -2px 0 0 rgba(204, 204, 204, 0.2), inset 0 -1px 0 0 rgba(153, 153, 153, 0.2); } + +scrolledwindow undershoot.left { + background-color: transparent; + padding-left: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: left center; + border: none; + box-shadow: inset 2px 0 0 rgba(204, 204, 204, 0.2), inset 1px 0 0 rgba(153, 153, 153, 0.2); } + +scrolledwindow undershoot.right { + background-color: transparent; + padding-right: 1px; + background-size: 1px 10px; + background-repeat: repeat-y; + background-origin: content-box; + background-position: right center; + border: none; + box-shadow: inset -2px 0 0 rgba(204, 204, 204, 0.2), inset -1px 0 0 rgba(153, 153, 153, 0.2); } + +menu menuitem check, menu menuitem check:hover, menu menuitem check:disabled, menu menuitem check:checked, menu menuitem check:checked:hover, menu menuitem check:checked:disabled, menu menuitem check:indeterminate, menu menuitem check:indeterminate:hover, menu menuitem check:indeterminate:disabled, menu menuitem radio, menu menuitem radio:hover, menu menuitem radio:disabled, menu menuitem radio:checked, menu menuitem radio:checked:hover, menu menuitem radio:checked:disabled, menu menuitem radio:indeterminate, menu menuitem radio:indeterminate:hover, menu menuitem radio:indeterminate:disabled { + border-color: transparent; } + +treeview.view check:selected:focus:disabled, treeview.view check:selected:disabled, +treeview.view radio:selected:focus:disabled, +treeview.view radio:selected:disabled { + color: #9a9a9a; } + +.sidebar { + background-color: #F7F7F7; } + +treeview:hover { + background: rgba(61, 61, 61, 0.15); } + +.osd scale slider { + color: #eeeeec; + border-color: rgba(0, 0, 0, 0.7); + background-color: transparent; + background-image: image(rgba(52, 52, 52, 0.975)); + background-clip: padding-box; + text-shadow: 0 1px black; + -gtk-icon-shadow: 0 1px black; + outline-color: rgba(238, 238, 236, 0.3); + background-image: image(#e9e9e7); } + .osd scale slider:hover { + background-image: image(#d6d6d1); } + .osd scale slider:active { + background-image: image(#b2b2a9); } + +.rubberband, +rubberband, +flowbox rubberband, +treeview.view rubberband, +.content-view rubberband, +.content-view .rubberband { + background-color: rgba(135, 135, 135, 0.2); + border: 1px solid rgba(204, 204, 204, 0.8); } + +button.color { + min-height: 23px; } + +levelbar block.high, levelbar block:not(.empty) { + border-color: #073f0f; + background-color: #109b26; } + levelbar block.high:backdrop, levelbar block:not(.empty):backdrop { + border-color: #109b26; } + +.csd.popup decoration { + border-radius: 4px; + box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 0, 0, 0.23); } + +window.background.csd.unified, window.background.csd.unified deck box headerbar { + border-radius: 7px 7px 0 0; } + +window.background.csd.unified decoration { + border-radius: 7px; } + +window.background.csd.unified headerbar button.radio { + background: #dedede; + min-height: 46px; + padding-top: 0; + padding-bottom: 0; + margin-top: 0; + margin-bottom: 0; + border-radius: 0; + border-left-width: 0; + border-right-width: 0; + border-bottom-width: 0; + border-top-color: rgba(255, 255, 255, 0.8); } + window.background.csd.unified headerbar button.radio:hover { + background-color: #e8e8e8; } + window.background.csd.unified headerbar button.radio:active { + background-color: lightgray; } + window.background.csd.unified headerbar button.radio:checked { + background-color: #c4c4c4; } + window.background.csd.unified headerbar button.radio:backdrop { + background-color: #F7F7F7; } + window.background.csd.unified headerbar button.radio:backdrop:checked { + background-color: #e5e5e5; } + +window.background.csd.unified headerbar button box.horizontal.wide { + margin-right: 18.4px; + margin-left: 18.4px; } + +window.background.csd.unified headerbar button box.vertical.narrow label { + margin-left: 10px; + margin-right: 10px; } + +window.background.csd.unified viewswitcherbar box { + min-height: 0; + padding-top: 0; + padding-bottom: 0; + margin-top: 0; + margin-bottom: 0; } + +window.background.csd.unified viewswitcherbar actionbar button.radio { + border-radius: 0; + min-height: 46px; + padding-top: 0; + padding-bottom: 0; + margin-top: 0; + margin-bottom: 0; + border-radius: 0; + border-width: 0; + border: none; + background: #F7F7F7; } + window.background.csd.unified viewswitcherbar actionbar button.radio:hover { + background-color: white; } + window.background.csd.unified viewswitcherbar actionbar button.radio:active { + background-color: #e5e5e5; } + window.background.csd.unified viewswitcherbar actionbar button.radio:checked { + background-color: #e0e0e0; } + window.background.csd.unified viewswitcherbar actionbar button.radio:backdrop { + background-color: #F7F7F7; } + window.background.csd.unified viewswitcherbar actionbar button.radio:backdrop:checked { + background-color: #e0e0e0; } + +switch:backdrop:checked, switch:backdrop:checked slider { + border-color: #94310f; } + +/* GTK NAMED COLORS + ---------------- + use responsibly! */ +/* +widget text/foreground color */ +@define-color theme_fg_color #3D3D3D; +/* +text color for entries, views and content in general */ +@define-color theme_text_color black; +/* +widget base background color */ +@define-color theme_bg_color #F7F7F7; +/* +text widgets and the like base background color */ +@define-color theme_base_color #ffffff; +/* +base background color of selections */ +@define-color theme_selected_bg_color #e95420; +/* +text/foreground color of selections */ +@define-color theme_selected_fg_color #FFFFFF; +/* +base background color of insensitive widgets */ +@define-color insensitive_bg_color #fafafa; +/* +text foreground color of insensitive widgets */ +@define-color insensitive_fg_color #9a9a9a; +/* +insensitive text widgets and the like base background color */ +@define-color insensitive_base_color #ffffff; +/* +widget text/foreground color on backdrop windows */ +@define-color theme_unfocused_fg_color #626262; +/* +text color for entries, views and content in general on backdrop windows */ +@define-color theme_unfocused_text_color black; +/* +widget base background color on backdrop windows */ +@define-color theme_unfocused_bg_color #F7F7F7; +/* +text widgets and the like base background color on backdrop windows */ +@define-color theme_unfocused_base_color #fcfcfc; +/* +base background color of selections on backdrop windows */ +@define-color theme_unfocused_selected_bg_color #e95420; +/* +text/foreground color of selections on backdrop windows */ +@define-color theme_unfocused_selected_fg_color #FFFFFF; +/* +insensitive color on backdrop windows*/ +@define-color unfocused_insensitive_color #d1d1d1; +/* +widgets main borders color */ +@define-color borders #c4c4c4; +/* +widgets main borders color on backdrop windows */ +@define-color unfocused_borders #cecece; +/* +these are pretty self explicative */ +@define-color warning_color #f99b11; +@define-color error_color #c7162b; +@define-color success_color #109b26; +/* +these colors are exported for the window manager and shouldn't be used in applications, +read if you used those and something break with a version upgrade you're on your own... */ +@define-color wm_title shade(#3D3D3D, 1.8); +@define-color wm_unfocused_title #626262; +@define-color wm_highlight rgba(255, 255, 255, 0.8); +@define-color wm_borders_edge rgba(255, 255, 255, 0.8); +@define-color wm_bg_a shade(#F7F7F7, 1.2); +@define-color wm_bg_b #F7F7F7; +@define-color wm_shadow alpha(black, 0.35); +@define-color wm_border alpha(black, 0.18); +@define-color wm_button_hover_color_a shade(#F7F7F7, 1.3); +@define-color wm_button_hover_color_b #F7F7F7; +@define-color wm_button_active_color_a shade(#F7F7F7, 0.85); +@define-color wm_button_active_color_b shade(#F7F7F7, 0.89); +@define-color wm_button_active_color_c shade(#F7F7F7, 0.9); +/* content view background such as thumbnails view in Photos or Boxes */ +@define-color content_view_bg #ffffff; +/* Very contrasty background for text views (@theme_text_color foreground) */ +@define-color text_view_bg #ffffff; diff --git a/index.theme b/index.theme index 16948b9..ff67f2a 100644 --- a/index.theme +++ b/index.theme @@ -8,5 +8,5 @@ Encoding=UTF-8 Type=X-GNOME-Metatheme GtkTheme=rinaldus-cinnamon-theme MetacityTheme=rinaldus-cinnamon-theme -IconTheme=Adwaita +IconTheme=rinaldus-cinnamon-theme CursorTheme=Adwaita